| remp_options {REMP} | R Documentation |
Tools to manage global setting options for REMP package.
remp_options(...) remp_reset()
... |
Option names to retrieve option values or |
NULL
The following options are supported
.default.AluFamilyA list of Alu subfamily to be included in the prediction.
.default.L1FamilyA list of L1 subfamily to be included in the prediction.
.default.GM12878.450k.URLURL to download GM12878 450k methylation profiling data.
.default.AH.repeatmasker.hg19AnnotationHub data ID linked to RepeatMasker
database (build hg19)
.default.AH.refgene.hg19AnnotationHub data ID linked to refSeq gene database
(build hg19)
.default.TSS.upstreamDefine the upstream range of transcription start site region.
.default.TSS.downstreamDefine the downstream range of transcription start site region.
.default.max.flankWindowDefine the max size of the flanking window surrounding the predicted RE-CpG.
.default.450k.total.probesTotal number of probes designed in Illumina 450k array.
.default.epic.total.probesTotal number of probes designed in Illumina EPIC array.
.default.450k.annotationA character string associated with the Illumina 450k array annotation dataset.
.default.epic.annotationA character string associated with the Illumina EPIC array annotation dataset.
.default.genomicRegionColNamesDefine the names of the genomic regions for prediction.
.default.predictorsDefine the names of predictors for RE methylation prediction.
.default.C.svmLinear.tuneDefine the default C (Cost) parameter for Support
Vector Machine (SVM) using linear kernel.
.default.sigma.svmRadial.tuneDefine the default sigma parameter for SVM
using Radial basis function kernel.
.default.C.svmRadial.tuneDefine the default C (Cost) parameter for SVM
using Radial basis function kernel.
# Display all default settings
remp_options()
# Display a specified setting
remp_options(".default.max.flankWindow")
# Change default maximum flanking window size to 2000
remp_options(.default.max.flankWindow = 2000)
# Reset all options
remp_reset()