Creates HDF5 formatted output analogous to the outputs created by Cell Ranger and can be read into Seurat, LIGER, or SCE class object. Requires DropletUtils package from Bioconductor.
Create_10X_H5(
raw_data_file_path,
source_type = "10X",
save_file_path,
save_name
)
file path to raw data file(s).
type of source data (Default is "10X"). Alternatively can provide "Matrix" or "data.frame".
file path to directory to save file.
name prefix for output H5 file.
A HDF5 format file that will be recognized as 10X Cell Ranger formatted file by Seurat or LIGER.
if (FALSE) {
Create_10X_H5(raw_data_file_path = "file_path", save_file_path = "file_path2", save_name = "NAME")
}