moving from merging scATAC pipeline to Analyzing PBMC scATAC-seq pipeline #567
-
Hi Tim, However, I am stuck in the step below (second pipeline mentioned above) since there is no peak_region_fragments column or blacklist_region_fragments column or peak_region_fragments in the "pbmc" object. add blacklist ratio and fraction of reads in peakspbmc$pct_reads_in_peaks <- pbmc$peak_region_fragments / pbmc$passed_filters * 100 In the merging pipeline, the "pbmc500.counts" object does not have those three columns which is included in the "md.500". So, I think this is a little gap between these two pipeline. Can you give me some suggestions on how to transfer these three columns to the pbmc which is a Seurat Object? I am new to it Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Those metadata values are present in the per-cell metadata computed by 10x cellranger-atac. To include that information, set the |
Beta Was this translation helpful? Give feedback.
Those metadata values are present in the per-cell metadata computed by 10x cellranger-atac. To include that information, set the
meta.data
field inCreateSeuratObject()
as shown in the vignettes, or use theAddMetaData()
function.