Replies: 1 comment 3 replies
-
Ok I figures this out. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
FRiP generates a 'fraction of reads in the peak', times 100 of which should be equivalent to 'pct_reads_in_peaks' described under Computing QC Metrics in Analyzing PBMC scATAC-seq or am I wrong on this ?
I used pbmc_granulocyte_sorted_3k_atac_fragments.tsv.gz from 10x and generated a total.fragment counts by following;
total.fragments<-CountFragments("~/Downloads/fragments/pbmc_granulocyte_sorted_3k_atac_fragments.tsv.gz")
From there, I used FRiP to get the 'fraction of reads in the peak' as follows,
A summary of the resulting 'fraction of reads in the peak' is following;
As you can see, a distribution looks ZINB, and if I use the QC criterium regarding 'pct_reads_in_peaks' (Cells with low values (i.e. <15-20%)) in 'Analyzing PBMC scATAC-seq' vignette, there are very few cells left to play with.
Looking at the FRiP function,
frip <- peak.counts/total_fragments_cell
FRiP generate a fraction of peaks (where read pileups are) in fragments per a single cell rather than a fraction of reads in fragments per cell.
Am I missing anything here ? Any pointer will be appreciated.
Beta Was this translation helpful? Give feedback.
All reactions