Thank you so much, ive already done that, but the results are the same. Im i doing something wrong before this line? Thank you
res_HIGADOvsPULMON_Sig <- res_HIGADOvsPULMON[which(res_HIGADOvsPULMON$padj < 0.05),]
summary(res_HIGADOvsPULMON_Sig)
out of 46 with nonzero total read count
adjusted p-value < 0.1
LFC > 0 (up) : 35, 76%
LFC < 0 (down) : 11, 24%
outliers [1] : 0, 0%
low counts [2] : 0, 0%
(mean count < 64)
[1] see 'cooksCutoff' argument of ?results
[2] see 'independentFiltering' argument of ?results
summary(res_HIGADOvsPULMON_Sig, 0.05)
out of 46 with nonzero total read count
adjusted p-value < 0.05
LFC > 0 (up) : 35, 76%
LFC < 0 (down) : 11, 24%
outliers [1] : 0, 0%
low counts [2] : 0, 0%
(mean count < 64)
[1] see 'cooksCutoff' argument of ?results
[2] see 'independentFiltering' argument of ?results
For your information, I removed the script because it was very malformatted. You can simply copy and paste the script out of Rstudio and then highlight code with the code button
10101to have it properly displayed. As from what I've seen in it you simply must do:The alpha argument indicates your FDR choice.
THank you! ive modified the post! its clearer to see it now. Thank you
Looks better but please for the future focus on the relevant parts. All the lines above this line:
res_HIGADOvsPULMON <- results(dds,contrast = c("treatment", "HIGADO", "PULMON"))are not relevant for the question as you are interested in the
summaryfunction.