Finding DEGs between two different datasets using limma
0
0
Entering edit mode
mfaleevs • 0
@99060f43
Last seen 20 months ago
United Kingdom

Hello everyone,

I was hoping to get some input on a problem I've been stuck on. Working on proteomics, I have two datasets from the same samples, one is the original dataset (og), and the other one accounts for PTMs (mod). Within them there are four different samples, young control, young treated, old control, old treated. I would like to find out what are the DEGs between

(young.treated.mod - young.control.mod)-(young.treated.og - young.control.og) and (old.treated.mod - old.control.mod) - (old.treated.og - old.control.og)

This is what I have so far

Age<-  c(rep('young', 'old', 'young', 'old', each =12))
Treatment <- c(rep('control', 'treated', 'shcontrol', 'treated','control', 'treated', 'shcontrol', 'shtreated', each=6))
Dataset<- c(rep('og', 'mod', each = 24))
exp_design<- cbind(Age, Treatment,Dataset)
exp_design<- as.data.frame(exp_design)

design <- model.matrix(~Treatment*Dataset)
fit <- lmFit(df, design)

`

However, this fails to inculde all of my desired variables I want to account for. A little bit stuck on how to proceed, so any input would be greatly appreciated!

Many many thanks Maria

Proteomics limma proteomi • 492 views
ADD COMMENT

Login before adding your answer.

Traffic: 372 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