EQTLCatalogFetcher | R Documentation |
a small class to fetch eqtl regions by study id from the EBI eQTL catalog
new()
Creates a new instance of this [R6][R6::R6Class] class.
EQTLCatalogFetcher$new(studyIDs, chrom, start, end, simplify = FALSE)
studyIDs
character vector, e.g. "GTEx_ge_brain_frontal_cortex"
chrom
character, chromosome identifier, with or without leading "chr"
start
numeric starting base pair of the region of interest
end
numeric ending base pair of the region of interest
a new instance of EQTLCatalogFetcher
fetch()
obtain the requested slice of eQTLs from each study
EQTLCatalogFetcher$fetch()
nothing
clone()
The objects of this class are cloneable with this method.
EQTLCatalogFetcher$clone(deep = FALSE)
deep
Whether to make a deep clone.
studyIDs <- "GTEx_ge_brain_frontal_cortex" chrom <- "8" start <- 27610984 end <- 27610987 fetcher <- EQTLCatalogFetcher$new(studyIDs, chrom, start, end, simplify=TURE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.