Entering edit mode
6.9 years ago
Sathish
▴
60
I am trying to make make heat map for my data set using cluster 3.0 program. I am looking to get output by gene order which was in my input file. Could you let me know how to visualize results in gene order based on input data. The input data from RNA-seq FPKM values.
Just a suggestion: why not use R Programming Language for this? ( see A: Heatmap based with FPKM values ). It is then possible to maintain the order as per your original data by switching to off the row dendrogram with the
Rowv=FALSE
argument.One can also use
Heatmap
from ComplexHeatmap ( C: Hierarchical Clustering in single-channel agilent microarray experiment ) and specify row or column ordering by supplying a vector of the desired gene / sample names, as per your desired ordering. For examplerow_order=rownames(MyDataMatrix)
will order as per your data.Kevin
Thanks for comments. I have fixed the above issue and will check about R program.