retrieve normalised count data from DESeq2
1
3
Entering edit mode
8.5 years ago
Rößti ▴ 40

Hello, sorry if this is a really stupid question but I have been struggling with this for a week or so now.

Basically I carried out a bacterial RNA-seq on 2 conditions in triplicates. After doing some analysis using DESeq2 it is looking like there is no differential expression between the 2 conditions however, is there a way that I can save the normalised count data to a cvs file so that I can check the quality of the replicates?

Thanks

RNA-Seq • 14k views
ADD COMMENT
0
Entering edit mode

FYI you can do a PCAplot to check wheter your replicates cluster together .. or not. Check DESeq2 vignette for PCAplot

ADD REPLY
6
Entering edit mode
8.5 years ago
foo <- counts(object, normalized = TRUE)
write.csv(foo, file="norm_counts.csv")

where object is a DESeqDataSet object

ADD COMMENT
0
Entering edit mode

Cheers for that :o)

ADD REPLY
0
Entering edit mode

And to obtain the count matrix before the normalization just change normalized = TRUE for normalized = FALSE?

ADD REPLY
0
Entering edit mode

Yes, or don't include the normalized parameter as when you look at the function's help page (?DESeq2::counts), you'll see that it's FALSE by default.

ADD REPLY
0
Entering edit mode

Oh, thank you I missed the default parameter.

ADD REPLY
0
Entering edit mode

Thank you, andrew, your script worked out!

But when I extract the DESeqDataSet object (dds), normalized counts table don't have Gene Ids, only numbers, like that:

gene id         BSR111-Med-46                   BSR112-Med-58
1               2.87573335679571                2.58809911711063
2               31.6330669247528                51.7619823422126

How can I get the normalized count data with gene ids?

Thank you again

ADD REPLY
0
Entering edit mode

Check the rownames on your input matrix. If they're not set, then they'll default from 1:n

ADD REPLY

Login before adding your answer.

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