You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One of the DMRs we got is located at chr17:8243028-8243946. In the excel file, it has Open.Sea as "yes", annotation is equal to "Promoter" and distanceToTSS is "0". But the DMRs plot looks like:
It seems like this DMR is within the intron and far from TSS if we look at genome browser, this region seems to be outside of promoter:
Am I reading this wrong? How can distanceToTSS be 0 here? If it was 0, shouldn't the first plot contain the first exon?
The text was updated successfully, but these errors were encountered:
f6v
changed the title
Confused about plots
Confused about DMR annotation
Oct 12, 2023
DMRichR::annotateRegions() is calling to ChIPseeker::annotatePeak(). You can learn more about the annotation by running the following (after the first block of code):
This shows that the transcript mapping is based on ENSMUST00000166348.9 , which it says starts at 8243811, so your DMR does overlap with its definition of the promoter. See here for more information.
For the DMR plot, the function calls dmrseq::getAnnot(), which uses annotatr::build_annotations().
This shows that the coding sequence is from: 8255965-8256108. Since the plot only shows the CDS, and not promoters, your result seems correct. You can learn about the annotations here.
If you'd like for the plot to look different, you can customize the tracks at the bottom of DMRichR::plotDMRs2(), which is based on dmrseq::plotDMRs(), through the annoTrack argument.
Hi,
One of the DMRs we got is located at chr17:8243028-8243946. In the excel file, it has Open.Sea as "yes", annotation is equal to "Promoter" and distanceToTSS is "0". But the DMRs plot looks like:
It seems like this DMR is within the intron and far from TSS if we look at genome browser, this region seems to be outside of promoter:
Am I reading this wrong? How can distanceToTSS be 0 here? If it was 0, shouldn't the first plot contain the first exon?
The text was updated successfully, but these errors were encountered: