Enter the body of text here
Code should be placed in three backticks as shown below
# Differential expression test- code1
et <- exactTest(yf)
topTags(et)
summary(de <- decideTestsDGE(et, adjust.method="BH", p=.05))
##other
fitq <- glmQLFit(yf,design)
qlf <- glmQLFTest(fitq,coef=2)
summary(decideTests(qlf))
Thank you so much for the answer