From 0b04ea0a88d8b4bfc4831fd12440a4009f1802d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Flor=C3=A9al=20Cabanettes?= <floreal.cabanettes@inra.fr> Date: Wed, 19 Apr 2017 12:03:37 +0200 Subject: [PATCH] Fix python syntax --- build_pop.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_pop.py b/build_pop.py index 46e9b71..bc4ec72 100755 --- a/build_pop.py +++ b/build_pop.py @@ -21,7 +21,7 @@ parser.add_argument("--haploid", help="Make a haploid genome, instead of diploid parser.add_argument("-l", "--read-len", help="Generate reads having a length of LEN", type=int, default=100) parser.add_argument("-m", "--insert-len-mean", help="Generate inserts (fragments) having an average length of LEN", type=int, default=300) -parser.add_argument("-v", "--insert-len-sd", help="Set the standard deviation of the insert (fragment) length (%)", +parser.add_argument("-v", "--insert-len-sd", help="Set the standard deviation of the insert (fragment) length (%%)", type=int, default=30) args = parser.parse_args() -- GitLab