Merge_Sparse_Multimodal_All {scCustomize} | R Documentation |
Merge a list of Sparse Matrices contain multi-modal data.
Description
Enables easy merge of a list of sparse matrices for multi-modal data.
Usage
Merge_Sparse_Multimodal_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 |
cell_id_delimiter |
The delimiter to use when adding cell id prefix/suffix. Default is "_". |
Value
A list containing one sparse matrix for each modality
Examples
## Not run:
data_list <- Read10X_GEO(...)
merged_list <- Merge_Sparse_Multimodal_All(matrix_list = data_list, add_cell_ids = names(data_list),
prefix = TRUE, cell_id_delimiter = "_")
## End(Not run)
[Package scCustomize version 2.1.2 Index]