Mercurial > repos > bjoern-gruening > bismark
diff bismark_methylation_extractor.py @ 4:427fb56f2e41 draft default tip
- new options
- fixes
author | bjoern-gruening |
---|---|
date | Fri, 01 Mar 2013 13:39:22 -0500 |
parents | 36d124f44c0a |
children |
line wrap: on
line diff
--- a/bismark_methylation_extractor.py Tue Dec 25 05:54:01 2012 -0500 +++ b/bismark_methylation_extractor.py Fri Mar 01 13:39:22 2013 -0500 @@ -25,6 +25,8 @@ parser = argparse.ArgumentParser(description='Wrapper for the bismark methylation caller.') # input options + parser.add_argument( '--bismark_path', dest='bismark_path', help='Path to the bismark perl scripts' ) + parser.add_argument( '--infile', help='Input file in SAM format.' ) parser.add_argument( '--single-end', dest='single_end', action="store_true" ) parser.add_argument( '--paired-end', dest='paired_end', action="store_true" ) @@ -70,6 +72,9 @@ # Build methylation extractor command output_dir = tempfile.mkdtemp() cmd = 'bismark_methylation_extractor --no_header -o %s %s %s' + if args.bismark_path: + # add the path to the bismark perl scripts, that is needed for galaxy + cmd = os.path.join(args.bismark_path, cmd) additional_opts = '' # Set up all options