From eb4e2f3a13224d5075293d7c8afeb3da0c7e7511 Mon Sep 17 00:00:00 2001 From: luponzo86 Date: Sun, 26 Jan 2020 15:00:50 -0800 Subject: [PATCH] change bg color of wt squares in sat.mut. figure --- rhapsody/predict/figures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rhapsody/predict/figures.py b/rhapsody/predict/figures.py index f742d93..c3c37d3 100644 --- a/rhapsody/predict/figures.py +++ b/rhapsody/predict/figures.py @@ -203,7 +203,7 @@ def print_sat_mutagen_figure(filename, rhapsody_obj, res_interval=None, ax0.grid(which='minor', color='w', linestyle='-', linewidth=.5) # mutagenesis table (heatmap) - matplotlib.cm.coolwarm.set_bad(color='antiquewhite') + matplotlib.cm.coolwarm.set_bad(color='#F9E79F') im = ax1.imshow(table_best[:, res_i-1:res_f], aspect='auto', cmap='coolwarm', vmin=0, vmax=1) axcb.figure.colorbar(im, cax=axcb)