From bce25aec4978228e5c707498ac01b9bf9cb69f55 Mon Sep 17 00:00:00 2001 From: Christopher Tomkins-Tinch Date: Wed, 14 Dec 2016 13:25:54 -0500 Subject: [PATCH] correct range in mafft memory callable --- pipes/rules/interhost.rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipes/rules/interhost.rules b/pipes/rules/interhost.rules index d26c33969..5f4f0bffe 100644 --- a/pipes/rules/interhost.rules +++ b/pipes/rules/interhost.rules @@ -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