Thank u for your selfless help! I did the design and contrasts matrix and made the analysis, while there are still something confuse me.
design <- model.matrix (~0 + group, pData(Trans.eset))
cm <- makeContrasts (CADvControl = groupCAD - groupControl,
CAD_SCHvControl = groupCAD_SCH - groupControl,
CAD_SCHvCAD = groupCAD_SCH - groupCAD,
levels = design)
fit <- limma::lmFit (Trans.eset, design = design)
fit2 <- contrasts.fit (fit, contrasts = cm)
fit2 <- limma::eBayes (fit2)
results <- decideTests (fit2)
summary (results)
CADvControl CAD_SCHvControl CAD_SCHvCAD
Down 0 0 0
NotSig 138745 138745 138745
Up 0 0 0
It shows nothing is up-regulated or down-regulated with no B value in topTable(fit2). But when I did two-two comparison, there shows results of t-test, P value and B value.
tempOutput1 <- topTable (fit2, coef = "CADvControl", nrow(fit2))
tempOutput2 <- topTable (fit2, coef = "CAD_SCHvControl", nrow(fit2))
tempOutput3 <- topTable (fit2, coef = "CAD_SCHvCAD", nrow(fit2))
DEG_CAD <- na.omit (tempOutput1)
DEG_CAD_SCH <- na.omit (tempOutput2)
DEG_Between <- na.omit (tempOutput3)
head (DEG_CAD)
PROBEID ENTREZID SYMBOL GENENAME
TC0100018466.hg.1 TC0100018466.hg.1 163259 DENND2C DENN domain containing 2C
TC1700010560.hg.1 TC1700010560.hg.1 57125 PLXDC1 plexin domain containing 1
TC0X00009878.hg.1 TC0X00009878.hg.1 142689 ASB12 ankyrin repeat and SOCS box containing 12
TC0800009830.hg.1 TC0800009830.hg.1 80346 REEP4 receptor accessory protein 4
TC1300006529.hg.1 TC1300006529.hg.1 650794 MIPEPP3 mitochondrial intermediate peptidase pseudogene 3
TC0800006669.hg.1 TC0800006669.hg.1 101929128 LOC101929128 uncharacterized LOC101929128
logFC AveExpr t P.Value adj.P.Val B
TC0100018466.hg.1 -0.9234392 2.953739 -5.172051 7.563992e-05 0.5026625 -2.663679
TC1700010560.hg.1 -0.5740328 5.817980 -5.108468 8.634638e-05 0.5026625 -2.687026
TC0X00009878.hg.1 -0.6891868 2.370178 -4.841589 1.512198e-04 0.7234822 -2.788913
TC0800009830.hg.1 -0.7199828 4.912157 -4.766760 1.771752e-04 0.7288260 -2.818622
TC1300006529.hg.1 0.6652065 3.909062 4.466342 3.363292e-04 0.8149338 -2.942987
TC0800006669.hg.1 -0.6809704 2.177349 -4.410742 3.789860e-04 0.8149338 -2.966899
What confused me is that I want to do a differential expression analysis for my 3 groups first and do a Gene Expression Trend Analysis to find if there is any KEGG pathway or GO enrichment has my interest trend among these 3 group. But there shows no different and I still dont know why. Could you please give me some suggestion to help me with such an issue? Millions and billions thanks to u!
Please use the formatting bar (especially the
codeoption) to present your post better. You can use backticks for inline code (`text` becomestext), or select a chunk of text and use the highlighted button to format it as a code block. I've done it for you this time.Also,
clariom d,differential expression,GO,KEGG- these should have been tags in your post. By using justRas a tag, the question makes it difficult for an expert in, say, the clariom d technology to find your post.