Dashboard: RNAcentral Dashboard
This dashboard answers the following questions:
- How many chemical components are present in the RNAcentral database?
- What is the total count of databases contributing their data to RNAcentral?
- Which databases have the highest number of sequences?
- How are RNA modifications distributed across different types?
- What are the trends in RNA interactions as classified by taxonomic IDs?
This dashboard contains 3 cards.
Usage
Install the mod:
mkdir dashboardscd dashboardspowerpipe mod initpowerpipe mod install github.com/turbot/powerpipe-mod-rnacentralStart the Powerpipe server:
powerpipe serverOpen http://localhost:9033 in your browser and select RNAcentral Dashboard dashboard.
You could also snapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe dashboard run rnacentral.dashboard.rnacentral --shareQueries
This dashboard uses the the following queries:
select  source,  count(*) as "Count"from  rnacen.rnc_chemical_componentsgroup by  sourceorder by  "Count" desc;