Normalized Values of Multi Sample Count Matrix with DESeq2
1
0
Entering edit mode
hkarakurt ▴ 20
@hkarakurt-12988
Last seen 21 months ago
Turkey

Hello everyone,

I have a count matrix which has 5 different tissue types. I did differential gene expression analysis to them as 2 samples each time (the analysis I need actually) but I am planning to generate heatmap, clustering analysis, PCA and SOM to all samples so I need normalized counts for each sample.

I used normTransform function to all data (designed as DESeq object but in the result list I could not find normalized values.

Is there any way to only have normalized values of a multi sample data without doing any analysis?

 

Thank you. 

rnaseq deseq2 normalization • 703 views
ADD COMMENT
0
Entering edit mode
@mikelove
Last seen 1 hour ago
United States

To get counts that have been scaled to account for library size, you can do:

dds <- estimateSizeFactors(dds)
ncts <- counts(dds, normalized=TRUE)

If you just want the values that are in the DESeqTransform object, use assay(). See the transformations section of the vignette for more details on this.

ADD COMMENT

Login before adding your answer.

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