Skip to content

Commit

Permalink
correct range in mafft memory callable
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkinsc committed Dec 14, 2016
1 parent 635c777 commit bce25ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipes/rules/interhost.rules
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def multi_align_mafft_memory(_, input):
mem=8
elif sample_count in range(50,100):
mem=16
elif sample_count > 100:
elif sample_count >= 100:
mem=32
return mem

Expand Down

0 comments on commit bce25ae

Please sign in to comment.