Description Usage Arguments Value Examples
create regulatory model of the gene, following all the specified options
create regulatory model of the gene, following all the specified options
create regulatory model of the gene, following all the specified options
1 2 3 4 5 6 7 8 |
obj |
An object of class NoDnaModelBuilder |
strategy |
a list specifying all the options to build one or more models |
A list with a bunch of tables...
A list with a bunch of tables...
A list with a bunch of tables...
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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | if(interactive()){
fp.specs <- list(title="fp.2000up.200down",
type="database.footprints",
chrom="chr6",
tss=41163186,
start=(tss-2000),
downstream=(tss+200),
matrix
db.host="khaleesi.systemsbiology.net",
databases=list("brain_hint_20"),
motifDiscovery="builtinFimo",
tfMapping=c("TFClass", "MotifDB"),
tfPrefilterCorrelation=0.2)
fpBuilder <- FootprintDatabaseModelBuilder("hg38", "TREM2", fp.specs, quiet=TRUE)
load(system.file(package="trenaSGM", "extdata", "mayo.tcx.RData"))
build(fpBuilder, mtx)
}
if(interactive()){
fp.specs <- list(title="fp.2000up.200down",
type="database.footprints",
chrom="chr6",
tss=41163186,
start=(tss-2000),
downstream=(tss+200),
matrix
db.host="khaleesi.systemsbiology.net",
databases=list("brain_hint_20"),
motifDiscovery="builtinFimo",
tfMapping=list("TFClass", "MotifDB"),
tfPrefilterCorrelation=0.2)
fpBuilder <- RegionsMotifMatchingModelBuilder("hg38", "TREM2", fp.specs, quiet=TRUE)
load(system.file(package="trenaSGM", "extdata", "mayo.tcx.RData"))
build(fpBuilder, mtx)
}
if(interactive()){
load(system.file(package="trenaSGM", "extdata", "mayo.tcx.RData"))
build.spec <- list(title="trem2.noDNA.allTFs",
type="noDNA_tfsSupplied",
matrix=mtx,
tfPrefilterCorrelation=0.4,
orderByColumn="rfScore",
solverNames=c("lasso", "lassopv", "pearson", "randomForest", "ridge", "spearman"))
builder <- NoDnaModelBuilder("hg38", "TREM2", build.spec, quiet=TRUE)
build(builder)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.