Skip to content

Commit

Permalink
[BUG] Bug fix to use trim command
Browse files Browse the repository at this point in the history
  • Loading branch information
suzuki-shm committed Jan 10, 2019
1 parent 4b4badc commit ca5a72b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/deblur
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def trim(seqs_fp, output_fp, trim_length, log_level, log_file):
logger = logging.getLogger(__name__)
logger.info('deblur deblur_seqs started on file %s' % seqs_fp)
with open(output_fp, 'w') as out_f:
for label, seq in trim_seqs(sequence_generator(seqs_fp), trim_length):
for label, seq in trim_seqs(sequence_generator(seqs_fp), trim_length, 0):
out_f.write(">%s\n%s\n" % (label, seq))


Expand Down

0 comments on commit ca5a72b

Please sign in to comment.