mirna-mrna interation mircomb (from DEGs and DEMs lists)
1
0
Entering edit mode
andreia ▴ 10
@andreia-23745
Last seen 2.0 years ago
Portugal

Hi there, i am stuck here in the analysis of mirna-mrna interactions because i migrate from deseq2 to mircomb and according to the paper of package you can add any format, but you need to have the specific columns if you want to do from DEGs/DEMs lists. They are the FC, logratio, mean expression, pvalue and adjusted p value. So i am very confusing with logratio and mean expression with baseMean values from DESeq2... Can you help me with this?

Thanks in advance.

deseq2 mircomb degs dems • 773 views
ADD COMMENT
0
Entering edit mode
@mikelove
Last seen 1 hour ago
United States

Please read over the DESeq2 documentation. These values are all clearly described as part of the output. See the rnaseqGene workflow in particular (for beginners).

ADD COMMENT
0
Entering edit mode

Thanks Michael for the fast reply :)

Its hard sometimes do get the answers that you need when you have a strictly deadline and the documentation, papers and others have different names to the same thing!

With help of my bioestatistician i have got confidence what i am doing before showing the client...

So, from DESeq2 if you need to use the lists of DEGs and DEMs on miRComb you need to:

  • log2foldchange = logratio
  • 2^log2foldchange = FC
  • pvalue=pval
  • padj=adj.pval
  • log2(baseMean)=meanExp

After that you can apply this code to add the corObj:

mydata.obj@diffexp.mRNA<-degs
mydata.obj@diffexp.miRNA<-dems
mydata.obj<-addSig(mydata.obj,"mRNA",adj.pval=0.05)
mydata.obj<-addSig(mydata.obj,"miRNA",adj.pval=0.05)
mydata.obj@info$mRNA.diffexp.method<-c("DESeq", "DvsC")
mydata.obj@info$miRNA.diffexp.method<-c("DESeq", "DvsC")
ADD REPLY

Login before adding your answer.

Traffic: 748 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6