Skip to content

Commit

Permalink
Enable selective alignment and gcBias flags
Browse files Browse the repository at this point in the history
  • Loading branch information
mdshw5 authored Jul 9, 2021
1 parent 89093de commit f0a0f0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pisces/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,15 +271,15 @@ def format_salmon_command(libtype, threads, index, output_dir, read1, read2,
'bin', 'salmon'), '--no-version-check', 'quant', '-q',
'--index', index, '--libType', libtype, '--mates1', ' '.join(read1),
'--mates2', ' '.join(read2), '--output', output_dir, '--threads',
str(threads), '--seqBias', '--useVBOpt'
str(threads), '--seqBias', '--gcBias', '--validateMappings', '--dumpEq'
]
elif not read2:
cmd = [
os.path.join(data_dir, 'redist', 'salmon',
'bin', 'salmon'), '--no-version-check', 'quant', '-q',
'--index', index, '--libType', libtype, '-r', ' '.join(read1), '--output',
output_dir, '--threads',
str(threads), '--seqBias', '--useVBOpt'
str(threads), '--seqBias', '--gcBias', '--validateMappings', '--dumpEq'
]
if make_bam:
import shlex
Expand Down

0 comments on commit f0a0f0f

Please sign in to comment.