aberrant | R Documentation |
Identifies the aberrant events and returns the number of aberrant counts per gene or sample or returns a matrix indicating aberrant events.
aberrant(object, ...)
## S4 method for signature 'OutriderDataSet'
aberrant(
object,
padjCutoff = 0.05,
zScoreCutoff = 0,
by = c("none", "sample", "gene"),
subsetName = NULL,
...
)
object |
An OutriderDataSet object |
... |
Currently not in use. |
padjCutoff |
The padjust cutoff |
zScoreCutoff |
The absolute Z-score cutoff, if NA or NULL no Z-score cutoff is used |
by |
if the results should be summarized by 'sample', 'gene' or not at all (default). |
subsetName |
The name of a subset of genes of interest for which FDR corected pvalues were previously computed. Those FDR values on the subset will then be used to determine aberrant status. Default is NULL (using transcriptome-wide FDR corrected pvalues). |
The number of aberrent events by gene or sample or a TRUE/FALSE matrix of the size sample x gene of aberrent events.
ods <- makeExampleOutriderDataSet()
ods <- OUTRIDER(ods, implementation='pca')
aberrant(ods)[1:10,1:10]
tail(sort(aberrant(ods, by="sample")))
tail(sort(aberrant(ods, by="gene")))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.