FilterGB | R Documentation |
This function is used for filtering out low count genes and barcodes
from count matrix based on total gene expression count (row sums) and
barcode expression count (column sums). CB2FindCell
has already integrated this function into it with g_threshold = 0
and b_threshold = 0
. If users plan to customize their filtering
threshold, this function can be applied to the raw expression
count matrix prior to running CB2FindCell
.
FilterGB(dat, g_threshold = 0, b_threshold = 0)
dat |
Input count matrix to be filtered. |
g_threshold |
Nonnegative integer. Default: |
b_threshold |
Nonnegative integer. Default: |
A filtered matrix with the same format as input matrix.
data(mbrainSub)
dim(mbrainSub)
mbrainSub_f <- FilterGB(mbrainSub)
dim(mbrainSub_f)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.