Entering edit mode
4.5 years ago
yueli7
▴
250
Hello,
I have eight single cell *.csv files and want to integrate them into one *.csv file Then I can do the downstream Seurat analysis: https://satijalab.org/seurat/v3.1/pbmc3k_tutorial.html.
How can I do it?
Thanks in advance for great help!
Best,
Yue
This will work only if all files have the same number of rows:
Hello Mensur Dlakic,
Thank yo so much for your great help!
You are right!
Best,
Yue
It depends on what these files are. Are those counts? And if so do they come from different experiments and are they normalized, and if so how? Please add some details.
Hello ATpoint,
Thank you so much for your response!
I downloaded the files from: https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE122960.
These files ended with: *_filtered_gene_bc_matrices_h5.h5.
I used cellranger mat2csv to transfer eight files into csv format.
Right now, I want to merge them together,
How I can do it?
Thank you again for your great help!
Best,
Yue
So this looks like eight different donors with raw data in H5 format. No need to bring them from the compressed format to plain text. I'd probably use
Read10X_h5
from Seurat to directly import them into R. Then first perform a QC using the standard Seurat workflow on each of the samples. Once you have your final matrix of high-quality cells per sample you can go and integrate them, e.g. with the Seurat anchoring framework as described on their website. Check the vignettes on how to combine different samples in Seurat, I cannot help with this since I personally use Bioconductor packages for scRNA-seq, not Seurat.