bc_barcodes | R Documentation |
bc_barcodes
used to get the barcode sequences in BarcodeObj
object. The input
BarcodesObj
object should be pre-processed by bc_cure_*
functions, such as bc_cure_depth
, bc_cure_umi
.
bc_barcodes(barcodeObj, unlist = TRUE)
## S4 method for signature 'BarcodeObj'
bc_barcodes(barcodeObj, unlist = TRUE)
barcodeObj |
A |
unlist |
A logical value. If TRUE, the function returns a vector of unique barcode list from all samples; otherwise a list will be returned. In the latter case, each element of the list contains the barcodes of a sample. |
A character vector or a list.
data(bc_obj)
# Get unique barcodes vector of all samples
bc_barcodes(bc_obj)
# Get a list with each element containing barcodes from one sample
bc_barcodes(bc_obj, unlist = FALSE)
###
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.