Larger values masking others for OmicCircos heatmap
1
0
Entering edit mode
9.3 years ago
Peter.Wood • 0

I am wondering whether the heatmap scale for the circos plot can be specified to each gene. At the moment the highly expressed genes are masking the others so that differential expression patterns are not being shown for all of the genes.

circos(R=110, cir=db, W=200, mapping=gene.expression, col.v=4, type="heatmap2", col.bar=T, lwd=1);
circos OmicCircos differential-gene-expression • 2.4k views
ADD COMMENT
1
Entering edit mode
9.3 years ago
Irsan ★ 7.8k

This is a common problem and can be solved by scaling your expression matrix by rows. So make Z-scores of your matrix by rows. Assuming you have samples in columns and genes in rows in an object called data you can do this in R by

scaledData <- t(scale(t(data))

This way you don't have to define color-value mappings per gene

ADD COMMENT

Login before adding your answer.

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