From 26d3e61bf5c15b9dd07199b9bb26ada54ef4c01c Mon Sep 17 00:00:00 2001 From: sepro Date: Wed, 6 Dec 2017 14:03:23 +0100 Subject: [PATCH] fixed bug in matrix_heatmap. Distance parameter wasn't passed to plot --- helper/matrix_heatmap.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/helper/matrix_heatmap.py b/helper/matrix_heatmap.py index c55e42e..8cbcc92 100644 --- a/helper/matrix_heatmap.py +++ b/helper/matrix_heatmap.py @@ -41,5 +41,6 @@ def plot_data(matrix_file, show_labels=True, file_out=None, dpi_output=300, dist plot_data(args.expression_matrix, show_labels=args.show_labels, file_out=args.png, - dpi_output=args.dpi) + dpi_output=args.dpi, + distance=args.distance)