From 3709b00d2b4ab34848a94b5d24fb44008d437458 Mon Sep 17 00:00:00 2001
From: james94 <james94@mi.fu-berlin.de>
Date: Thu, 29 Sep 2022 12:09:09 +0200
Subject: [PATCH] remove print statements

---
 scripts/report/addFullTableForReport.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/report/addFullTableForReport.py b/scripts/report/addFullTableForReport.py
index 6ac763b..67e52bc 100644
--- a/scripts/report/addFullTableForReport.py
+++ b/scripts/report/addFullTableForReport.py
@@ -4,9 +4,9 @@ samples=pd.read_csv(snakemake.input.results, dtype=str, index_col=0, delim_white
 # samples=samples.reset_index
 turn2FloatAndMb=['Bases_Mb','Est_Size_Mb','Longest_Scaff_Mb','Scaff_N50_Mb','Scaff_NG50_Mb','Scaff_N95_Mb','Scaff_NG95_Mb','Longest_Cont_Mb','Cont_N50_Mb','Cont_NG50_Mb','Cont_N95_Mb','Cont_NG95_Mb']
 roundDecimals=['Comp_BUSCOs_%','Comp_Single_BUSCOs_%','Het_%','GC_%','QV','Completeness','Bases_Mb','Est_Size_Mb','Longest_Scaff_Mb','Scaff_N50_Mb','Scaff_NG50_Mb','Scaff_N95_Mb','Scaff_NG95_Mb','Longest_Cont_Mb','Cont_N50_Mb','Cont_NG50_Mb','Cont_N95_Mb','Cont_NG95_Mb']
-print('this is samples',samples)
+# print('this is samples',samples)
 sampleTransposed=samples.T
-print('this is sampleTransposed',sampleTransposed)
+# print('this is sampleTransposed',sampleTransposed)
 for header in turn2FloatAndMb:
 	sampleTransposed[header]=sampleTransposed[header].astype(float).div(1000000)
 for i in range(0,4):
-- 
GitLab