get_compilation {snapcount} | R Documentation |
Get or set query compilation
get_compilation(qb) set_compilation(qb, compilation)
qb |
A QueryBuilder object constructed using the
|
compilation |
A single string containing the name of the Snaptron data
source. Any variant of the |
get_compilation
returns the current compilation as string.
set_compilation
returns a new QueryBuilder
object with
the compilation set to the value of compilation
.
qb <- QueryBuilder(compilation = "gtex", regions = "CD99") get_compilation(qb) qb <- set_compilation(qb, Compilation$tcga) get_compilation(qb)