I used Kallisto-bustools to quantify a snRNA-seq run. I have output files: spliced.barcodes.txt, splided.genes.txt, spliced.mtx, output.bus, output.unfiltered.bus, and same set of unspliced files. How do I convert these files to seurat object format? I tried converting txt files to tsv and then zipped to their pbmc data files but there is an error:
pbmc.data <- Read10X(data.dir = "output/counts_unfiltered/")
Error in fixupDN.if.valid(value, x@Dim) :
length of Dimnames[[2]] (676991) is not equal to Dim[2] (57748)
Suggestions or redirections to others to methods for this are very welcome. Thanks for your time.
Does this seem correct ?
Yes, looks reasonable: You start off with 57,748 genes x 676,991 cells. After very light filtering, you are left with 31,477 genes by 13,206 cells.
Seems reasonable.