Z score heat map online tool
0
0
Entering edit mode
5.0 years ago
kanwarjag ★ 1.2k

I know R can be used for this purpose. I am looking for a free software that can generate a heatmap of z score. The matrix has 300 (columns)X 3000 (Rows). Any suggestion. Thanks

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

R is "free software" and there are many heatmap / clustering packages: Heatmaps in R

To scale your data to Z-scores (by row), you simply need to do:

data.scaled <- t(scale(t(data)))

You should then switch to off further scaling in the heatmap function that you use. When you do this, both the dendrogram(s) and the heatmap will be generated from the Z-scores (some people may prefer to not generate the dendrograms from the Z-scores, but may want their heatmap to display these).

Finally, if you literally just want a heatmap, then you could also just use levelplot(), from lattice package.

ADD REPLY
0
Entering edit mode

Are you looking for an R solution or are you looking for an alternative free software that is not R?

ADD REPLY
0
Entering edit mode

Alternative to R that can be used by a non-bioinformatician without any coding knowledge. I tried to use TMV4 but it will not take that large matrix.

ADD REPLY
0
Entering edit mode

There are a few different graphical options with examples listed here: https://github.com/igordot/genomics/blob/master/notes/heatmaps.md

ADD REPLY

Login before adding your answer.

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