From 93b6550c8b37d2c9eb1be829e1dfe48e52254856 Mon Sep 17 00:00:00 2001 From: Diane Trout Date: Tue, 21 Oct 2008 19:02:49 +0000 Subject: [PATCH] update scripts for the pipeline to pipelines module rename --- scripts/configure_pipeline | 6 +++--- scripts/elandseq | 2 +- scripts/rerun_eland.py | 4 ++-- scripts/retrieve_config | 8 ++++---- scripts/runfolder | 4 ++-- scripts/srf | 2 +- 6 files changed, 13 insertions(+), 13 deletions(-) diff --git a/scripts/configure_pipeline b/scripts/configure_pipeline index 4b2e3a0..5e3e7fb 100644 --- a/scripts/configure_pipeline +++ b/scripts/configure_pipeline @@ -2,9 +2,9 @@ import os import sys import re -from htsworkflow.pipeline.configure_run import * -from htsworkflow.pipeline import retrieve_config as _rc -from htsworkflow.pipeline.run_status import startCmdLineStatusMonitor +from htsworkflow.pipelines.configure_run import * +from htsworkflow.pipelines import retrieve_config as _rc +from htsworkflow.pipelines.run_status import startCmdLineStatusMonitor logging.basicConfig(level=logging.DEBUG, format='%(asctime)s %(levelname)-8s %(message)s', diff --git a/scripts/elandseq b/scripts/elandseq index 787fd98..2e456c1 100755 --- a/scripts/elandseq +++ b/scripts/elandseq @@ -3,7 +3,7 @@ import optparse import os import sys -from htsworkflow.pipeline.gerald import extract_eland_sequence +from htsworkflow.pipelines.gerald import extract_eland_sequence def make_parser(): usage = "usage: %prog [options] infile [outfile]" diff --git a/scripts/rerun_eland.py b/scripts/rerun_eland.py index 7eb30bb..6ab9abe 100644 --- a/scripts/rerun_eland.py +++ b/scripts/rerun_eland.py @@ -6,8 +6,8 @@ import os import subprocess import sys -from htsworkflow.pipeline import gerald -from htsworkflow.pipeline import runfolder +from htsworkflow.pipelines import gerald +from htsworkflow.pipelines import runfolder def make_query_filename(eland_obj, output_dir): query_name = '%s_%s_eland_query.txt' diff --git a/scripts/retrieve_config b/scripts/retrieve_config index cdd2c5b..3fab6ad 100644 --- a/scripts/retrieve_config +++ b/scripts/retrieve_config @@ -1,9 +1,9 @@ #!/usr/bin/env python import sys -from htsworkflow.pipeline.retrieve_config import * -from htsworkflow.pipeline import retrieve_config -from htsworkflow.pipeline.genome_mapper import getAvailableGenomes -from htsworkflow.pipeline.genome_mapper import constructMapperDict +from htsworkflow.pipelines.retrieve_config import * +from htsworkflow.pipelines import retrieve_config +from htsworkflow.pipelines.genome_mapper import getAvailableGenomes +from htsworkflow.pipelines.genome_mapper import constructMapperDict #Turn on built-in command-line parsing. retrieve_config.DISABLE_CMDLINE = False diff --git a/scripts/runfolder b/scripts/runfolder index 8b4444a..bf0bcc4 100644 --- a/scripts/runfolder +++ b/scripts/runfolder @@ -31,8 +31,8 @@ import logging import optparse import sys -from htsworkflow.pipeline import runfolder -from htsworkflow.pipeline.runfolder import ElementTree +from htsworkflow.pipelines import runfolder +from htsworkflow.pipelines.runfolder import ElementTree def make_parser(): usage = 'usage: %prog [options] runfolder_root_dir' diff --git a/scripts/srf b/scripts/srf index 0f11514..248728f 100644 --- a/scripts/srf +++ b/scripts/srf @@ -52,7 +52,7 @@ def pathname_to_run_name(base): def find_bustard_dir(pathname): # fixme: for don't repeat yourself this should some how be related - # fixme: to pipeline.runfolder + # fixme: to pipelines.runfolder datadir = os.path.join(pathname, 'Data') logging.info("searching in %s" % (datadir,)) -- 2.30.2