From ad2789cc78cc9f6e5aa00da8b89045d8f2eaca50 Mon Sep 17 00:00:00 2001 From: Diane Trout Date: Thu, 12 Jul 2012 11:16:17 -0700 Subject: [PATCH] Look for RTAConfig.xml file generated by pipeline 1.12 era. --- htsworkflow/pipelines/ipar.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/htsworkflow/pipelines/ipar.py b/htsworkflow/pipelines/ipar.py index 376c5bd..28f523d 100644 --- a/htsworkflow/pipelines/ipar.py +++ b/htsworkflow/pipelines/ipar.py @@ -226,7 +226,8 @@ def ipar(pathname): # its still live. # look for parameter xml file - paramfiles = [os.path.join(pathname, 'config.xml'), + paramfiles = [os.path.join(pathname, 'RTAConfig.xml'), + os.path.join(pathname, 'config.xml'), os.path.join(path, '.params')] for paramfile in paramfiles: if os.path.exists(paramfile): -- 2.30.2