Description Usage Arguments Details Value Author(s) References See Also Examples
Retrieve the significantly gained and lost regions including the corresponding, original probes. A significance level must be selected by the user.
1 | getSigSegments(spm, sigLevels, chromosomes=NULL)
|
spm |
The sample point matrix to be plotted |
sigLevels |
The significance thresholds to be used |
chromosomes |
Takes a vector of chromosomes to be plotted. Defaults to all chromosomes. |
'sigLevels' should contain the significance thresholds in a list with the positive (gains) threshold in the 'pos' element and the negative (losses) threshold in the 'neg' element. This is the format as returned by 'findSigLevelTrad' and 'findSigLevelFdr'.
Returns a sigSegments object containing the chromosome, start position, end position, average KC score and the mode of the KC score in that region of all segments passing the thresholds as set in 'sigLevels'. Additionally, returns the IDs and indices of the probes and the positions in the sample point matrix within the significant regions. The results are stored in two separate slots: 'gains' for gains and 'losses' for losses. Use 'write.table' to save the results to file.
Jorma de Ronde
~put references to the literature/web site here ~
findSigLevelTrad
, findSigLevelTrad
, write.table
1 2 3 4 5 6 7 8 9 | data(hsSampleData)
data(hsMirrorLocs)
spm1mb <- calcSpm(hsSampleData, hsMirrorLocs)
siglevel1mb <- findSigLevelTrad(hsSampleData, spm1mb, n=3)
sigSegments1mb <- getSigSegments(spm1mb, siglevel1mb)
write.table(sigSegments1mb, file=file.path(tempdir(),'sigSegments1mb.txt'))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.