View source: R/detect_duplicated_samples.R
detect_duplicated_samples | R Documentation |
Detects duplicated samples with extremely high correlation of expression
values using the function outlierFinder
.
detect_duplicated_samples(
se,
assay = 1,
title = NULL,
use.fast = TRUE,
remove.genes = TRUE,
cor.method = "pearson",
use = "everything",
...
)
se |
|
assay |
Character or integer. Name or number of assay containing log transformed expression values. |
title |
Character. Title of the plot. |
use.fast |
Logical. Should fast implementation of covariance matrix estimation provided in the R package coop (default: TRUE). |
remove.genes |
Logical. Should genes with missing values be removed? (default: TRUE). |
cor.method |
Character. Correlation coefficient to be used ("pearson", "spearman" or "kendall"). Ignored if use.fast = TRUE. |
use |
Character. Method to deal with missing values as in
|
... |
Additional arguments passed to the
|
List with the following components:
info: data.frame with identifiers of duplicated samples and their correlation or NULL
plot: Histogram as returned by gghistogram
data("se.gene")
detect_duplicated_samples(se = se.gene)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.