Description Usage Arguments Value Author(s) Examples
View source: R/seqCNA_functions.r
Given a set of thresholds and the copy number of the lower resulting range, copy numbers are called.
1 | applyThresholds(rco, thresholds, min.CN)
|
rco |
A |
thresholds |
A vector with values that establish the ranges for each copy number. |
min.CN |
The copy number of the lowest range defined by the thresholds. |
A SeqCNAInfo-class
object, with additional information on the copy numbers called for each genomic window.
David Mosen-Ansorena
1 2 3 4 5 6 7 8 9 10 11 12 | data(seqsumm_HCC1143)
rco = readSeqsumm(tumour.data=seqsumm_HCC1143)
rco = applyFilters(rco, 0, 1, 0, 2, FALSE, plots=FALSE)
rco = runSeqnorm(rco, plots=FALSE)
rco = runGLAD(rco)
### CALLING ###
thresholds = seq(-0.9,4,by=0.9)
min.CN = 1
rco = applyThresholds(rco, thresholds, min.CN)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.