scottgigante / haplotyped-methylome

Reproducibility workflow for Gigante et al., 2018: Using long-read sequencing to detect imprinted DNA methylation
GNU General Public License v3.0
22 stars 6 forks source link

any simple pipeline description ? #1

Closed hmyh1202 closed 5 years ago

hmyh1202 commented 5 years ago

The pipeline of svg picture is so complex.

Do you have any simple shell code description?

hmyh1202 commented 5 years ago

default

scottgigante commented 5 years ago

Hi @hmyh1202 , sadly the svg picture is complex because the pipeline is complex :) The best I can do is point you to the smaller svgs at the bottom of the README, or otherwise you can read the rule descriptions in scripts/*.snakefile. These rules are executed in the order shown in the svg in order to produce the final output.

Regarding your question about DSS, we ran it twice, once for parent-of-origin effects, and once for strain-specific effects. Hence, to see parent-of-origin effects, we ran DSS treating the samples with the same parent as replicates; to see strain effects, we ran DSS treating the samples with the same strain as replicates. I hope that makes sense.

hmyh1202 commented 5 years ago

Thans for your kind reply.

Here, I have sequenced one father, one mother sample by using WGS, so got SNP data based on reference sequence. And I got four F1 samples data of RNA-seq and bisulfite-seq.
The current situation I did not sequenced the reciprocal cross samples.

scottgigante commented 5 years ago

Hi @hmyh1202 , your design is fine to detect DMRs between maternal genome A and paternal genome B - DSS works with replicates of the same samples, and with four replicates you will get good results for detecting these DMRs. The challenge is that it is impossible to tell which of these DMRs are due to genome A vs genome B, and which of these are due to maternal vs paternal.

To further deconvolve this you can run the reciprocal cross, either (as we did) treating the forward and reciprocal crosses as replicates (what we did) or by running the DMR selection separately and seeing which DMRs change direction (more appropriate if you have four replicates of each, in my opinion.)

I hope that makes sense!

scottgigante commented 5 years ago

Here is a paper describing the general experimental framework of DSS, if that is helpful: http://doi.org/10.1093/bioinformatics/btw026

hmyh1202 commented 5 years ago

Thank you very much !