Description Usage Arguments Value Author(s) Examples
Pre-process data for scLink
1 2 3 4 5 6 7 | sclink_norm(
count,
scale.factor = 1e+06,
filter.genes = FALSE,
gene.names = NULL,
n = 500
)
|
count |
A full gene count matrix with rows representing cells and columns representing genes. Gene names are given as column names. |
scale.factor |
A number specifying the sclae factor used for library size normalization. Defaults to 1e6. |
filter.genes |
A Boolean specifying whether scLink should select genes based on mean expression.
When set to |
gene.names |
A character vector specifying the genes used for network construction.
Only needed when |
n |
An integer specifying the number of genes to be selected by scLink (defaults to 500).
Only needed when |
A transformed and normalized gene expression matrix that can be used for correlation calculation and network construction.
Wei Vivian Li, vivian.li@rutgers.edu
1 2 | count = readRDS(system.file("extdata", "example.rds", package = "scLink"))
count.norm = sclink_norm(count, scale.factor = 1e6, filter.genes = TRUE, n = 500)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.