Description Usage Arguments Details Value Author(s) See Also Examples
BaalChIP.run is a wrapper convenience function, to compute allele counts and perform quality controls in one step. This function will use the package's defaults.
1 2 3 4 | BaalChIP.run(.Object, cores = 4, verbose = TRUE)
## S4 method for signature 'BaalChIP'
BaalChIP.run(.Object, cores = 4, verbose = TRUE)
|
.Object |
An object of the |
cores |
number of cores for parallel computing (default is 4). |
verbose |
logical. If TRUE reports extra information on the process |
This function is a wrapper of the following functions: alleleCounts
, QCfilter
, mergePerGroup
, filter1allele
, getASB
An object of the BaalChIP
class.
Ines de Santiago
1 2 3 4 5 6 7 8 9 10 | samplesheet <- system.file("test", "exampleChIP.tsv", package = "BaalChIP")
hets <- c("MCF7"= system.file("test", "MCF7_hetSNP.txt", package = "BaalChIP"),
"GM12891"= system.file("test", "GM12891_hetSNP.txt", package = "BaalChIP"))
res <- BaalChIP(samplesheet=samplesheet, hets=hets)
res <- BaalChIP.run(res, cores=2)
#summary of the QC step
summaryQC(res)
#summary of the ASB step
summaryASB(res)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.