Hi guys,
Is there any available code for DeSeq2 method in R here, please share it with me if that possible?
I want to reproduce the code to extract the differentially expressed genes (DEG) for a sequence of cancer stages.
Appreciate any help!
Hi guys,
Is there any available code for DeSeq2 method in R here, please share it with me if that possible?
I want to reproduce the code to extract the differentially expressed genes (DEG) for a sequence of cancer stages.
Appreciate any help!
You can either type vignette("DESeq2")
into your R terminal if DESeq2 is installed, or look at their online vignette here.
@Kevin Blighe ,hi Kevin, happy to see you too!, yes I am okay now, you know with Corona we have lost a lot of people, and now i have to return to my research, how are you doing?, hope everything is going great with you? and thank you for your willing always to reply and support, really appreciate that!
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
Just FYI, you can type the name of any function (not followed by parathenses) into the console, and that would give you the code of the function.
However, the first place to look at is probably the documentation, and not the code...
Oh yes, that distinction was not made. Do you want the actual code for the DESeq2 functions of just a tutorial for how to use the package?
As per Sam:
@Hi kevin, yes i need to understand how to use the package, i already read some papers about this method, this method can be used to do normalization and differential epression analysis with an adjusted p value and log2 FC , and that i wonder if there is any Desq2 code available here or any GitHub code for that .
right now i have found this:
This is what you need: https://bioconductor.org/packages/release/bioc/vignettes/DESeq2/inst/doc/DESeq2.html Please go through it extensively.
True. I would recommend though (if you really want to look at the source code) to check the repo at GitHub https://github.com/mikelove/DESeq2 or download the tarball from Bioconductor https://bioconductor.org/packages/release/bioc/html/DESeq2.html (bottom of the page) since this shows the commented code with proper spacing as written by the author. The compiled functions (e.g. when tyiing
DESeq
into R console) have comments (#
) and blank lines removed, therefore often difficult to read. You will also need to go back and forth between scripts since functions may import subfunctions from other source scripts. Not sure if reading the source code rather than the documentation helps that much in understanding what functions do, unless you are really interested in every nitty gritty under the hood.