Hi, I am having trouble loading the cell ranger data into R. I am a beginner, so please excuse my lack of knowledge of R and other terminology.
Here is what shows up on my script.
cds <- load_cellranger_data("C:/Users/myname/Downloads/10x_data")
Error in load_cellranger_data("C:/Users/myname/Downloads/10x_data") :
Barcode file missing
The exact path to the three files are
C:/Users/myname/Downloads/10x_data/outs/filtered_feature_bc_matrix/GRCh38
UPDATE
I used the load_mm_data
method instead and am getting a new message.
cds <- load_mm_data(mat_path = "C:/Users/myname/Downloads/matrix.mtx",
feature_anno_path = "C:/Users/myname/Downloads/features.tsv",
cell_anno_path = "C:/Users/myname/Downloads/barcodes.tsv")
'as(<dgTMatrix>, "dgCMatrix")' is deprecated.
Use 'as(., "CsparseMatrix")' instead.
See help("Deprecated") and help("Matrix-deprecated").
Warning message:
In new_cell_data_set(mat, cell_metadata = cell_annotations$metadata, :
gene_metadata must contain a column verbatim named 'gene_short_name' for certain functions.
Thank you in advance for your help.