Identifying clusters on scATAC-seq data integrated with Harmony #487
-
Hello, I have integrated scATAC-seq data from several individuals using Harmony based on a unified set of all peaks observed across all my samples. I want to identify clusters in my data next so that I can perform label transfer from my scRNA-seq data and measure differential peak accessibility in each cell type. I noticed that in the Signac vignettes for merging and integrating datasets, as well as the Seurat vignette for integration, only
I've tried running Thank you for your help! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
If you want to cluster using the harmony-corrected LSI, you can run |
Beta Was this translation helpful? Give feedback.
If you want to cluster using the harmony-corrected LSI, you can run
FindNeighbors()
withreduction="harmony"
, followed byFindClusters()
. You can do this before or after computing the UMAP, they're independent.