How to integrate my data to do scRNA analysis #4197
-
I want to do scRNA analysis but I am confused how to merge/integrate the data. There are 3 different conditions present: healthy, disease type 1, and disease type 2. Some of my scRNA data has one count matrix (.mtx), features, and barcodes files each, but the rest have double count matrix (.mtx), features, and barcodes files each because they were previously run into 2 lanes (L1 and L2) and the files were created separately. So I want to kinda merge those that are run into two lanes into one. (I understand there is a procedure in Cellranger to make that happen but I do not have the fastq/etc files but only those 3 that I mentioned earlier, so that's off the table) I read these samples with Now, I would use the data integration standard procedure available in the corresponding Seurat v4 vignette:
Where So, my question is:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You unfortunately can't just merge the count matrices derived from different sequencing runs of the same library, as the result would be incorrectly quantified (double counting of UMIs). You need to fix that issue by running In general, we recommend that you first combine datasets by merging them rather than performing integration, and check whether there is a batch effect that needs to be corrected. If so, you should then use the data integration tools in Seurat. |
Beta Was this translation helpful? Give feedback.
You unfortunately can't just merge the count matrices derived from different sequencing runs of the same library, as the result would be incorrectly quantified (double counting of UMIs). You need to fix that issue by running
cellranger aggr
before doing anything else. If you really don't have access to the original data, then you need to drop one of the sequencing runs.In general, we recommend that you first combine datasets by…