Skip to content

Commit

Permalink
fix: htseq-count sort is by alignment not name
Browse files Browse the repository at this point in the history
  • Loading branch information
meono committed Jul 27, 2016
1 parent 6d85884 commit b216225
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 @@ -178,7 +178,7 @@ def mapandlink_jobs(project_path, sample, reads, defaults, ref, jobs, ppn='8', w

if any(job for job in jobs if job in ['htseq-count', 'edgeR', 'DESeq']):
logger.info('Using htseq options: {}'.format(defaults['htseq_options']))
jobstr += ['echo "htseq"\nhtseq-count {} -f bam {} {} -o {} > {}'.format(defaults['htseq_options'],
jobstr += ['echo "htseq"\nhtseq-count {} -f bam -r pos {} {} -o {} > {}'.format(defaults['htseq_options'],
(os.path.abspath(
os.path.join(project_path, sample,
'accepted_hits.sorted.bam'))),
Expand Down

0 comments on commit b216225

Please sign in to comment.