View source: R/fragmentObject.R
CountFragments | R Documentation |
Count total fragments per cell barcode present in a fragment file.
CountFragments(fragments, cells = NULL, max_lines = NULL, verbose = TRUE)
fragments |
Path to a fragment file. If a list of fragment files is provided, the total fragments for each cell barcode across all files will be returned |
cells |
Cells to include. If NULL, include all cells |
max_lines |
Maximum number of lines to read from the fragment file. If NULL, read all lines in the file. |
verbose |
Display messages |
Returns a data.frame with the following columns:
CB: the cell barcode
frequency_count: total number of fragments sequenced for the cell
mononucleosome: total number of fragments with length between 147 bp and 294 bp
nucleosome_free: total number of fragments with length <147 bp
reads_count: total number of reads sequenced for the cell
fpath <- system.file("extdata", "fragments.tsv.gz", package="scUtils") counts <- CountFragments(fragments = fpath)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.