Description Usage Arguments Value Author(s) Examples
View source: R/summarizationMl.R
Method for computation of the multi-loci summarization
1 2 | mlSummarization(object, windowMethod, windowParam, summaryMethod, summaryParam,
callParam = list(runtype = "ff"), returnValues, saveFile = "mlData")
|
object |
an instance of |
windowMethod |
Method for combination of neighbouring SNPs. Possible values are Std and Bps. |
windowParam |
further parameters as the window size |
summaryMethod |
allowed versions for the summarization step are: Gaussian, Variational, Exact. Default is Variational. |
summaryParam |
The parameters for the summaryMethod. Further information
can be obtained via the according functions:
|
callParam |
Additional parameters for runtype (ff or bm) as well as cores for parallelization. |
returnValues |
List with return values. |
saveFile |
Name of the file to save. For possible values see summaryMethod. |
Multi-loci summarized data of an instance of
ExpressionSet
Djork-Arne Clevert okko@clevert.de and Andreas Mitterecker mitterecker@bioinf.jku.at
1 2 3 4 5 6 7 8 9 10 11 | load(system.file("exampleData/slData.RData", package = "cn.farms"))
windowMethod <- "std"
windowParam <- list()
windowParam$windowSize <- 5
windowParam$overlap <- TRUE
summaryMethod <- "Variational"
summaryParam <- list()
summaryParam$cyc <- c(20)
mlData <- mlSummarization(slData, windowMethod, windowParam,
summaryMethod, summaryParam)
assayData(mlData)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.