From 562daca423e06a56f990eddce1796b5d239080a5 Mon Sep 17 00:00:00 2001 From: Diane Trout Date: Thu, 1 Mar 2012 15:09:19 -0800 Subject: [PATCH] Remove some debug prints --- htsworkflow/pipelines/test/simulate_runfolder.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/htsworkflow/pipelines/test/simulate_runfolder.py b/htsworkflow/pipelines/test/simulate_runfolder.py index 0b57631..42cf421 100644 --- a/htsworkflow/pipelines/test/simulate_runfolder.py +++ b/htsworkflow/pipelines/test/simulate_runfolder.py @@ -582,7 +582,6 @@ class DemultiplexedPaths(object): self.sample_dir = os.path.join(self.project_dir, self.sample_dir) self.summary_dir = 'Summary_Stats_{0}'.format(self.flowcell_id) self.summary_dir = os.path.join(self.project_dir, self.summary_dir) - print "HI:", self.summary_dir def make_sample_dirs(self): @@ -592,7 +591,6 @@ class DemultiplexedPaths(object): os.mkdir(self.sample_dir) def make_summary_dirs(self): - print "HI:", self.summary_dir if not os.path.isdir(self.summary_dir): os.mkdir(self.summary_dir) @@ -600,6 +598,7 @@ class DemultiplexedPaths(object): filename = self.rootname + suffix pathname = os.path.join(self.sample_dir, filename) return pathname + def dump(self): print ('index seq: {0}'.format(self.index_seq)) -- 2.30.2