OmicIDXQuery: A container for OmicIDXR queries

Description Usage Format Examples

Description

A container for OmicIDXR queries

Usage

1

Format

An object of class R6ClassGenerator of length 24.

Examples

 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)

seandavi/OmicIDXR documentation built on May 21, 2019, 11:42 a.m.