Description Usage Arguments Value See Also Examples
Get candidate genes using the variance filter
1 2 | ## S4 method for signature 'FootprintFilter'
getCandidates(obj, extraArgs)
|
obj |
An object of class FootprintFilter |
extraArgs |
A named list containing 5 fields:
|
A vector containing all genes with variances less than the target gene
Other getCandidate Methods: getCandidates,NullFilter-method
,
getCandidates,VarianceFilter-method
,
getCandidates
1 2 3 4 5 6 7 8 9 10 11 12 13 | # Use footprint filter with the included SQLite database for MEF2C to filter candidates
# in the included Alzheimer's dataset
load(system.file(package="TReNA", "extdata/ampAD.154genes.mef2cTFs.278samples.RData"))
footprint.filter <- FootprintFilter(mtx.assay = mtx.sub)
target.gene <- "MEF2C"
db.address <- system.file(package="TReNA", "extdata")
genome.db.uri <- paste("sqlite:/",db.address,"genome.sub.db", sep = "/")
project.db.uri <- paste("sqlite:/",db.address,"project.sub.db", sep = "/")
tfs <- getCandidates(footprint.filter, extraArgs = list("target.gene" = target.gene,
"genome.db.uri" = genome.db.uri, "project.db.uri" = project.db.uri,
"size.upstream" = 1000, "size.downstream" = 1000))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.