Description Usage Arguments Details Examples
This function will filter the data to remove cells and/or genes
1 2 3 4 5 6 7 8 | pre_filter(
input,
minUMI = 0,
maxUMI = NA,
threshold = NA,
minCells = NA,
print_progress = TRUE
)
|
input |
the input ex_sc |
minUMI |
min number of UMIs per cell |
maxUMI |
max number of UMIs per cell |
threshold |
UMI threshold for gene detection |
minCells |
number of cells expressed above threshold for a given gene |
print_progress |
will print progress if TRUE |
When processing the data, low quality cells may contain very few UMIs, while some overrepresented cell barcodes may indicate barcode bleedover or cell doublets. Filtering out both low and high UMI count cells is recommended before normalization.
1 | filtered_data <- filter_UMIs(input = ex_sc_example, minUMI = 1000, maxUMI = 10000, threshold = 1, minCells = 10, print_progress = TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.