Runner seems to work with running the pipeline when launch from within
[htsworkflow.git] / gaworkflow / pipeline / run_status.py
index 5f313a62690392a3f66c9aac482dd4cf44f46a5a..8e19c0134cfe4e4284adc2be6855b47f586554c6 100644 (file)
@@ -127,7 +127,7 @@ class GARunStatus(object):
     during a run and provides methods for retrieving
     (completed, total) for each step or entire run.
     """
-
+    #print 'self._conf_filepath = %s' % (conf_filepath)
     self._conf_filepath = conf_filepath
     self._base_dir, junk = os.path.split(conf_filepath)
     self._image_dir = os.path.join(self._base_dir, 'Images')
@@ -201,7 +201,9 @@ class GARunStatus(object):
     """
     Figures out the number of cycles that are available
     """
+    #print 'self._image_dir = %s' % (self._image_dir)
     cycle_dirs = glob.glob(os.path.join(self._image_dir, 'L001', 'C*.1'))
+    #print 'cycle_dirs = %s' % (cycle_dirs)
     cycle_list = []
     for cycle_dir in cycle_dirs:
       junk, c = os.path.split(cycle_dir)