Description Usage Arguments Details Value Examples
interactive exploration of eQTL results; code as of jan 6 2015 is written with selectizeInput to throw an error on gene symbol deletion
1 2 | gQTLbrowse(store, baseSE, stateGR, phenGR, FDRsupp, orgDbObj = Homo.sapiens,
selector=selectizeInput)
|
store |
instance of |
baseSE |
a |
stateGR |
a |
phenGR |
a GRanges instance with disease association labeling in a metadata
field |
FDRsupp |
an instance of |
orgDbObj |
an AnnotationDbi OrgDb instance such as |
currently coded to simplify exposure of an error when selectizeInput is used
side effects: will open browser window and allow interactive gene selection and hover-over tool tip for locus- or trait-specific metadata reporting
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | data(ggr19)
library(GenomeInfoDb)
seqlevelsStyle(ggr19) = "NCBI"
library(geuvPack)
data(geuFPKM)
library(gQTLBase)
library(geuvStore2)
prst = makeGeuvStore2()
data(ggr19)
data(filtFDR)
library(gQTLstats)
data(hmm878)
seqlevelsStyle(hmm878) = "NCBI"
library(Homo.sapiens)
#
# will throw error when gene symbol in input box is deleted
# but will simply select properly if it is not; change selector to
# selectInput for simpler interface
#
print( gQTLbrowse( prst, geuFPKM, stateGR = hmm878,
phenGR = ggr19, FDRsupp = filtFDR, selector=selectInput ) )
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.