Tools — Live Ranking
Every external database / API / server / software / viewer / model used in STRC research. Each card answers: what it does, how to use it, when, and which hypothesis cited it. Schema: ~/STRC/_templates/fileclasses/tool.md.
Rubric
Tiers mirror the STRC Hypothesis Ranking:
- S — actively used in current proofs; results cited in a hub
- A — verified working on STRC inputs; ready when needed
- B — described, never run on STRC variant
- C — stub / unverified
- D — superseded, deprecated, or persistently broken (kept for replication)
Status (status:) is operational state — orthogonal to tier. A B-tier tool can be active; an S-tier one can be broken.
Curated narrative map by research task: Genomics & Bioinformatics Tools.
S-tier — driving active proofs
TABLE WITHOUT ID
file.link AS "Tool",
kind AS "Kind",
category AS "Category",
hypotheses_used AS "Used by",
last_used AS "Last used"
FROM "tools"
WHERE tier = "S"
SORT last_used DESC, file.name ASC| Tool | Kind | Category | Used by | Last used |
|---|---|---|---|---|
| RDKit | database | pharmacology | h01 | 2026-04-26 |
| ADMET-AI | database | pharmacology | h01 | 2026-04-24 |
| APBS | database | structure | h01 | 2026-04-24 |
| AlphaFold 3 Server | server | structure | h01 | 2026-04-08 |
A-tier — verified, ready
TABLE WITHOUT ID
file.link AS "Tool",
kind AS "Kind",
category AS "Category",
hypotheses_used AS "Used by",
last_used AS "Last used"
FROM "tools"
WHERE tier = "A"
SORT file.name ASC| Tool | Kind | Category | Used by | Last used |
|---|---|---|---|---|
| AAV Capsid Database | database | delivery | ||
| ASGCT Gene Therapy Database | database | delivery | ||
| AlphaFold Database | server | structure | ||
| AlphaGenome | model | variant-effect | h01 | 2026-04-08 |
| AlphaMissense | database | structure | ||
| BRAVO — TOPMed | database | population | ||
| CADD | database | misc | ||
| CIViC | database | clinical | ||
| ClinGen | database | misc | ||
| ClinVar | database | misc | ||
| ClinicalTrials.gov | database | delivery | ||
| Clustal Omega | database | conservation | ||
| DECIPHER | database | population | ||
| Deafness Variation Database | database | misc | ||
| ENCODE | database | regulatory | ||
| ESMFold | server | structure | ||
| Ensembl REST API | api | misc | ||
| Franklin | database | misc | ||
| Hereditary Hearing Loss Homepage | database | misc | ||
| Human Protein Atlas | database | misc | ||
| IUPred3 | server | structure | ||
| InterVar | database | misc | ||
| LOVD | database | population | ||
| LitVar 2.0 | database | literature | ||
| Mol Star Viewer | viewer | structure | ||
| Mutalyzer | database | misc | ||
| NetGPI | database | misc | ||
| NetNGlyc | database | misc | ||
| OMIM | database | misc | ||
| Open Targets | database | clinical | ||
| OrthoDB | database | conservation | ||
| PubMed | database | literature | ||
| REVEL | database | misc | ||
| RegulomeDB | database | regulatory | ||
| SWISS-MODEL | server | structure | ||
| Semantic Scholar | database | literature | ||
| SignalP | database | misc | ||
| UCSC Genome Browser | viewer | regulatory | ||
| UniProt | database | conservation | ||
| VarSome | database | misc | ||
| dbNSFP | database | misc | ||
| gnomAD | database | population | ||
| seqr | database | population |
B-tier — described, untested on STRC
TABLE WITHOUT ID
file.link AS "Tool",
kind AS "Kind",
category AS "Category",
acmg AS "ACMG",
url AS "URL"
FROM "tools"
WHERE tier = "B"
SORT category ASC, file.name ASCC-tier — stub / unverified
TABLE WITHOUT ID
file.link AS "Tool",
category AS "Category",
acmg AS "ACMG",
url AS "URL"
FROM "tools"
WHERE tier = "C"
SORT category ASC, file.name ASCD-tier — superseded, deprecated, or broken
TABLE WITHOUT ID
file.link AS "Tool",
status AS "Status",
superseded_by AS "Replaced by",
url AS "URL"
FROM "tools"
WHERE tier = "D"
SORT status ASC, file.name ASCRoll-up by category
TABLE WITHOUT ID
category AS "Category",
length(rows) AS "Count",
filter(rows.file.name, (n) => n != null) AS "Tools"
FROM "tools"
WHERE type = "tool" AND file.name != "index" AND file.name != "Genomics & Bioinformatics Tools"
GROUP BY category
SORT category ASC(no results)
Lint — cards missing canonical fields
Cards still on the legacy type: note schema or missing tier/excerpt. Should be 0 after migration; new entries that drift land here.
TABLE WITHOUT ID
file.link AS "Tool",
type AS "Type",
tier AS "Tier",
excerpt AS "Excerpt"
FROM "tools"
WHERE file.name != "index" AND file.name != "Genomics & Bioinformatics Tools"
AND (type != "tool" OR !tier OR !excerpt)
SORT file.name ASC(no results)
Connections
[part-of]STRC Hypothesis Ranking[see-also]STRC Computational Scripts Inventory — internal.py/.sh(instruments-vs-atoms split)[see-also]Genomics & Bioinformatics Tools — narrative map by research task