-
Hi @timoast, Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
For any analysis involving multiple samples, you should always start by defining one set of features (peaks) to quantify and analyze across all samples.
Define a set of peaks and quantify those in each of the samples. See the merging vignette for example steps: https://stuartlab.org/signac/articles/merging
I would suggest doing QC on each dataset first, then integrate/merge and run joint analysis |
Beta Was this translation helpful? Give feedback.
-
Hi @timoast I am also trying to integrate multiple samples that have 10X multiome: scATAC and scRNA data. From this post, I was able to understand that I need to merge the peaks sets from each of the samples for ATAC and am following the above vignette.(https://stuartlab.org/signac/articles/merging) However, I am running into the following error:
Computing hash Could it be that the size of my metadata file and frag file are different? Also, in the function CreateFragmentObject do the cells variable have to be gex barcodes or ATAC barcodes? In my csv file, I have both. It would be great if you could please help me solve this issue! Here is the most of my code for reference. Thank you! peaks.FC013_1 <- FC013_1$Peaks convert to genomic ranges Create a unified set of peaks to quantify in each dataset Filter out bad peaks based on length CREATE FRAGMENT FILES create fragment objects |
Beta Was this translation helpful? Give feedback.
For any analysis involving multiple samples, you should always start by defining one set of features (peaks) to quantify and analyze across all samples.
Define a set of peaks and quantify those in each of the samples. See the merging vignette for example steps: https://stuartlab.org/signac/articles/merging
I would suggest doing QC on each dataset first, the…