From e34810a93be063df2fd711e76c07df25668bf1d1 Mon Sep 17 00:00:00 2001 From: sepro Date: Mon, 25 Apr 2016 15:35:30 +0200 Subject: [PATCH] further work on QC --- utils/matrix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/matrix.py b/utils/matrix.py index f0260ee..89b57b4 100644 --- a/utils/matrix.py +++ b/utils/matrix.py @@ -74,7 +74,7 @@ def normalize_matrix_counts(data, conditions): if read_counts[condition] != 0: gene_normalized_data[condition] = (int(data[gene_id][condition]) * 1000000)/read_counts[condition] else: - print('Condition without reads', condition) + # print('Condition without reads', condition) gene_normalized_data[condition] = 0 normalized_data[gene_id] = gene_normalized_data