| remp_options | 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.AluFamily.grepRegular expression for 'grep' to extract Alu family to be included in the prediction.
.default.L1Family.grepRegular expression for 'grep' to extract L1 family to be included in the prediction.
.default.ERVFamily.grepRegular expression for 'grep' to extract ERV family to be included in the prediction.
.default.chrList of human chromosome.
.default.GM12878.450k.URLURL to download GM12878 450k methylation profiling data.
.default.RMSK.hg19.URLURL to download RepeatMasker database in hg19 genome.
.default.RMSK.hg38.URLURL to download RepeatMasker database in hg38 genome.
.default.refGene.hg19.URLURL to download refSeq gene database in hg19 genome.
.default.refGene.hg38.URLURL to download refSeq gene database in hg38 genome.
.default.AH.repeatmasker.hg19AnnotationHub data ID linked to RepeatMasker
annotation database (Mar 2020, build hg19).
.default.AH.repeatmasker.hg38AnnotationHub data ID linked to RepeatMasker
annotation database (Sep 2021, build hg38).
.default.AH.refgene.hg19AnnotationHub data ID linked to refSeq gene database
(build hg19)
.default.AH.hg38ToHg19.over.chainAnnotationHub hg38 to hg19 liftover chain data ID.
.default.AH.hg19ToHg38.over.chainAnnotationHub hg19 to hg38 liftover chain data ID.
.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.27k.total.probesTotal number of probes designed in Illumina 27k array.
.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.svmLinear.tuneDefine the default C (Cost) parameter for Support
Vector Machine (SVM) using linear kernel.
.default.svmRadial.tuneDefine the default parameters (C and sigma) for SVM
using Radial basis function kernel.
.default.xgbTree.tuneDefine the default parameters (nrounds, eta, max_depth,
gamma, colsample_bytree, min_child_weight, and subsample) for Extreme Gradient
Boosting.
# 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()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.