readVDJcontigs | R Documentation |
Creates a SplitDataFrameList
(see
DataFrameList
) from a character vector of directory
names corresponding to the output of the CellRanger V(D)J pipeline.
readVDJcontigs(samples, ...)
## S4 method for signature 'character'
readVDJcontigs(samples, sample.names = names(samples))
samples |
A character vector containing one or more directory names,
each corresponding to a 10X sample. Each directory should contain a file
named |
... |
additional arguments. |
sample.names |
A character vector of length equal to |
The resulting list of DataFrame
s contains all the data in
filtered_contig_annotations.csv
, split by cell barcode. Note that
the index of each sample in samples
is concatenated to the cell
barcodes, so that cells from different samples cannot have identical
barcodes.
A SplitDataFrameList
object containing data on all contigs,
grouped by cell barcode.
# write the example data to a temporary directory
example(writeVDJcontigs)
# specify sample locations and read in data
samples <- file.path(loc, c('sample1','sample2'))
contigs <- readVDJcontigs(samples)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.