-
Notifications
You must be signed in to change notification settings - Fork 11
Explore Query Page
Victor Lin edited this page Jul 14, 2020
·
5 revisions
End goal: query for a set of accessions and show summary visualization, with links to individual summary report pages.
Example website endpoints:
/explore?family=Coronaviridae
/explore?accession=EU82727.1
Web page will simply show a list of SRA accession IDs with links to summary report pages. Example:
We can start with top 10 results, then add pagination.
- Craft SQL queries that reflect actual queries. Example:
select * where family=Coronaviridae order by score limit 10
- Add database endpoints for above queries with same parameter. Example:
Task<ActionResult<Run>> GetRuns(string family)
- Call database endpoint from webpage and render results.
TBD
Reference
Records
Work in Progress
Stale