Skip to content

Commit

Permalink
fix: collect function
Browse files Browse the repository at this point in the history
  • Loading branch information
meono committed Jul 27, 2016
1 parent 2f892d1 commit 15d04c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions iLoop_RNAseq_pipeline/master_qsub.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,9 +208,9 @@ def collect_counts_job(project_path, output, mapjobIDs, defaults, ppn='1', wallt
# TODO: clear out virtual environment arguments if this works
jobstr += ['#PBS -V']

jobstr += ['python {}/htseq_count_collector.py -p {} -g {} -o {} '.format(os.path.abspath(iLoop_RNAseq_pipeline.__path__[0], 'scripts'),
jobstr += ['python {}/htseq_count_collector.py -p {} -g {} -o {} '.format(os.path.abspath(os.path.join(iLoop_RNAseq_pipeline.__path__[0], 'scripts')),
project_path,
os.path.abspath(os.path.join(project_path, 'groups.json')),
os.path.abspath(os.path.join(os.path.join(project_path, 'groups.json'))),
output)]

return '\n\n'.join(jobstr).replace('PPN', ppn)
Expand Down

0 comments on commit 15d04c1

Please sign in to comment.