Hi,
I am preparing a heatmap in metagenomeseq. When asking to prepare the heatmap only including the significant OTUs, I get the plot with the OTU number.
How can I change this OTU number to its genus for instance?
Thanks in advance (seel below the code)
heatmapColColors = c("grey","green")[as.integer(factor(pd_Donor$Donor))]
heatmapCols = colorRampPalette(c("white","light blue","blue","dark blue"))(50)
significant_OTU <- which(MRfulltable(Donor_A, number=length(Donor_A$taxa))$adjPvalues<=0.05)
plotMRheatmap(obj = metHMEX6_A[significant_OTU,] , n=length(significant_OTU), margins=c(4,14),cexRow = 0.7, cexCol = 1, trace = "none", col = heatmapCols, ColSideColors = heatmapColColors, lhei = c(2, 8))