integrating/merging two citeseq samples #4814
-
Hi Seurat, I have two 10x generated samples where I used cell ranger multi command to run gex, totalseqc (adt) and tcr_t. I am using seurat for downstream analysis. Can you guide me how I can merge/integrate the two samples for both gex and adt in Seurat? The vignette does not help at all with multi sample integration of gex and adt datasets. It only talks about gex integration alone. samples <- c("Sample1testmatrix","Sample2testmatrix") for (input in samples){ Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
One way to do this is to find anchors between your samples using one modality (RNA for example), and use those anchors to integrate both the RNA and protein modalities. For example, you can run |
Beta Was this translation helpful? Give feedback.
-
Hi @timoast and @yuhanH , Now I have a similar issue with how to integrate multiple samples while using HTO enrichment vignette? It's easy to integrate RNA part. Can you please provide guidelines on how to integrate HTO data coming from multiple samples? When do we run HTODemux? Do we do HTODemux individually on all samples before we run "IntegrateData" on HTO data? Please guide and thanks a ton! |
Beta Was this translation helpful? Give feedback.
One way to do this is to find anchors between your samples using one modality (RNA for example), and use those anchors to integrate both the RNA and protein modalities. For example, you can run
IntegrateData()
to integrate the RNA assay, and runIntegrateEmbeddings()
to integrate the PCA derived from the protein measurements from each sample, and then add the corrected dimension reduction to the integrated object.