From fb458ddc09a34b0af29f03d51ee3e194386f2def Mon Sep 17 00:00:00 2001 From: Yifan Zhu Date: Fri, 16 Oct 2020 22:50:09 +0800 Subject: [PATCH] Fix type in help message of arg parser --- util/genome_sampling.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/genome_sampling.py b/util/genome_sampling.py index 6f4cb69..0937f4b 100644 --- a/util/genome_sampling.py +++ b/util/genome_sampling.py @@ -130,7 +130,7 @@ def check_mean_length(file_path): calculated. We use the larger one compared with seq_num.') parser.add_argument('-d', action='store', dest='dis', default=3, type=int, help='choose from the following distribution: \ - 1: beta_distribution, 2: alpha_distribution, 3: mixed_gamma_dis \ + 1: beta_distribution, 2: exponential_distribution, 3: mixed_gamma_dis \ default: 3. If the read length drawn from the distribution is \ larger than the length of the genome, the value is clipped to the\ length of the genome')