RCircos Heatmap Colors
Hi I am new to using RCircos and was wondering if anyone knows how to change the heatmap colors? I see there is a function to view the other built-in color ranges but not to set them.
Thanks,
Marcus
• 3,763 views
•
link
1 answer
I'm also struggling with this question, and find a way.
It can be changed with RCircos.Reset.Plot.Parameters(param) function supplied with a RCircos Plot Parameter list.
The easiest way to get this list is to use RCircos.Get.Plot.Parameters(). You can then modify it and pass it to the reset funciton..
You can set this before you plot the heatmap:
RC.param <- RCircos.Get.Plot.Parameters()
RC.param['heatmap.color'] <- "YellowToRed"
RCircos.Reset.Plot.Parameters(RC.param)
Best regards,
Jason
• 0 views
•
link
Log in to answer this question.
Hi Marcus,
I have the same problem.So I was wondering did you solved it?
Thanks