Description Usage Format Examples
A container for OmicIDXR queries
1 |
An object of class R6ClassGenerator
of length 24.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # create a client
cli = OmicIDXGraphqlClient$new()
# create a query container
qc = OmicIDXQuery$new()
qc$query('allSraStudies', '
{ allSraStudies
{
edges {
node {
accession
bioproject
gse
title
status
updated
}
}
}
}
')
results = dataframe_handler(cli$exec(qc$queries$allSraStudies))
dim(results)
head(results)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.