Skip to content

Commit

Permalink
bug fix in handling of a trimmed file
Browse files Browse the repository at this point in the history
  • Loading branch information
shka committed Nov 30, 2016
1 parent a84dc9b commit 1bc8211
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/bio/gadget/fq1l.rb
Expand Up @@ -135,7 +135,7 @@ def trim_3end(sequence)
end
ensure
File.unlink(fifo) if File.exist?(fifo)
File.unlink(tmpfile) if File.exist?(tmpfile)
File.unlink(tmpfile) if File.exist?(tmpfile) && !options.key?(:trimmed)
end
end

Expand Down

0 comments on commit 1bc8211

Please sign in to comment.