Skip to content

Commit

Permalink
fix: dependency issue for collect_stats
Browse files Browse the repository at this point in the history
  • Loading branch information
meono committed Oct 26, 2016
1 parent 9668630 commit da3c08a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iLoop_RNAseq_pipeline/master_qsub.py
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ def job_organizer(project_path, groups, ref, defaults, map_to_mask, ppn='8', rea
if map_to_mask:
js = collect_stats_job(project_path=project_path, output=abspath(join_path(results_path, 'align_summaries_mask.tsv')), mapjobIDs=maskjobIDs, defaults=defaults, map_to_mask=map_to_mask)
statjobID.append(job_submitter(js=js, path=job_files_path, name='job_collect_stats_mask.sh'))
js = collect_stats_job(project_path=project_path, output=abspath(join_path(results_path, 'align_summaries.tsv')), mapjobIDs=maskjobIDs, defaults=defaults, map_to_mask=False)
js = collect_stats_job(project_path=project_path, output=abspath(join_path(results_path, 'align_summaries.tsv')), mapjobIDs=mapjobIDs, defaults=defaults, map_to_mask=False)
statjobID.append(job_submitter(js=js, path=job_files_path, name='job_collect_stats.sh'))
except Exception as ex:
logger.error(
Expand Down

0 comments on commit da3c08a

Please sign in to comment.