This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Heat graph problem

I am using the micraorray data analysis, trying to make heat graph for lnRNA which has some nmeric numbers as part of refseq ID like Ak132564 so heat graph use this coulmn in graph as it using number also i want not to use first column of serial number in graph

rna-seq

1 answer

I assume you use R for your heatmap?

If yes, then select the matrix without the first column, like this:

new <- your_matrix[, -1]

Then add your IDs as row names:

rownames(new) <- your_matrix[, 1]

Then continue with your heatmap.

How can i make comples heat graph like one for lnrna list against the respective expression valuse for four diffrent regions up and down for respective lrna IDS in respctive regions please tell me ?

can i convert selective coulmns into rows against respective columns into comples heat maps

Log in to answer this question.