Co-variants in differential expression analysis
0
0
Entering edit mode
7.9 years ago
Ati ▴ 40

I want to analysis NGS data from case and control. I want to consider 3 co-variants in this analysis using edgeR and Voom.

Would you please guide me.

Thanks a lot

RNA-Seq sequencing DE edgeR Voom • 1.8k views
ADD COMMENT
0
Entering edit mode

What have you tried? The edgeR and limma user manuals are pretty good, have you read through them?

ADD REPLY
0
Entering edit mode

Yes I have read them. But I am not sure, how to define co-variants! do have any example?

ADD REPLY
2
Entering edit mode

A covariate is no different from a group, you just don't use a factor.

sampleTable = data.frame(samples=c("samples", "go", "here", ...),
                         groups=factor(c("group1", "group1", "group2", ...)),
                         age=c(40, 50, 25, ...))
mm = model.matrix(~groups + age, sampleTable)

age is an example of a covariate above.

ADD REPLY
0
Entering edit mode

Thanks in advance for the nice point

ADD REPLY
0
Entering edit mode

Do you know what you mean with co-variants? If you do, you should really be able to figure it out by reading the edgeR and/or limma vignettes like Devon said.

ADD REPLY
0
Entering edit mode

If you have a count matrix already, you can use the Degust (http://vicbioinformatics.com/degust/index.html) GUI to perform edgeR with a simple case-control design. It also gives you the R code used so you can then customise the analysis.

ADD REPLY

Login before adding your answer.

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