Merge a list of Sparse Matrices — Merge_Sparse_Data_All (original) (raw)
Enables easy merge of a list of sparse matrices
Merge_Sparse_Data_All(
matrix_list,
add_cell_ids = NULL,
prefix = TRUE,
cell_id_delimiter = "_"
)
Arguments
matrix_list
list of matrices to merge.
add_cell_ids
a vector of sample ids to add as prefix to cell barcode during merge.
prefix
logical. Whether add_cell_ids
should be added as prefix to current cell barcodes/names or as suffix to current cell barcodes/names. Default is TRUE, add as prefix.
cell_id_delimiter
The delimiter to use when adding cell id prefix/suffix. Default is "_".
Examples
if (FALSE) {
data_list <- Read10X_GEO(...)
merged <- Merge_Sparse_Data_All(matrix_list = data_list, add_cell_ids = names(data_list),
prefix = TRUE, cell_id_delimiter = "_")
}