From 70b0fede649782be7c486721008c0aad6ff87355 Mon Sep 17 00:00:00 2001 From: Heng Li Date: Fri, 14 Sep 2018 22:29:25 -0400 Subject: [PATCH] r835: improved help message. Resolved #232 --- main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.c b/main.c index 2d33aa7..010571e 100644 --- a/main.c +++ b/main.c @@ -6,7 +6,7 @@ #include "mmpriv.h" #include "ketopt.h" -#define MM_VERSION "2.12-r832-dirty" +#define MM_VERSION "2.12-r835-dirty" #ifdef __linux__ #include @@ -302,7 +302,7 @@ int main(int argc, char *argv[]) fprintf(fp_help, " - asm5/asm10/asm20: asm-to-ref mapping, for ~0.1/1/5%% sequence divergence\n"); fprintf(fp_help, " - splice: long-read spliced alignment\n"); fprintf(fp_help, " - sr: genomic short-read mapping\n"); - fprintf(fp_help, "\nSee `man ./minimap2.1' for detailed description of command-line options.\n"); + fprintf(fp_help, "\nSee `man ./minimap2.1' for detailed description of these and other advanced command-line options.\n"); return fp_help == stdout? 0 : 1; }