@@ -81,6 +81,7 @@ static ko_longopt_t long_options[] = {
81
81
{ "rmq-inner" , ko_required_argument , 356 },
82
82
{ "spsc" , ko_required_argument , 357 },
83
83
{ "junc-pen" , ko_required_argument , 358 },
84
+ { "pe-ind-chain" , ko_no_argument , 359 },
84
85
{ "dbg-seed-occ" , ko_no_argument , 501 },
85
86
{ "help" , ko_no_argument , 'h' },
86
87
{ "max-intron-len" , ko_required_argument , 'G' },
@@ -252,6 +253,7 @@ int main(int argc, char *argv[])
252
253
else if (c == 355 ) opt .flag |= MM_F_OUT_DS ; // --ds
253
254
else if (c == 356 ) opt .rmq_inner_dist = mm_parse_num (o .arg ); // --rmq-inner
254
255
else if (c == 357 ) fn_spsc = o .arg ; // --spsc
256
+ else if (c == 359 ) opt .flag |= MM_F_PE_IND ; // --pe-ind-chain
255
257
else if (c == 501 ) mm_dbg_flag |= MM_DBG_SEED_FREQ ; // --dbg-seed-occ
256
258
else if (c == 330 ) {
257
259
fprintf (stderr , "[WARNING] \033[1;31m --lj-min-ratio has been deprecated.\033[0m\n" );
@@ -378,6 +380,7 @@ int main(int argc, char *argv[])
378
380
fprintf (fp_help , " -x STR preset (always applied before other options; see minimap2.1 for details) []\n" );
379
381
fprintf (fp_help , " - lr:hq - accurate long reads (error rate <1%%) against a reference genome\n" );
380
382
fprintf (fp_help , " - splice/splice:hq - spliced alignment for long reads/accurate long reads\n" );
383
+ fprintf (fp_help , " - splice:sr - spliced alignment for short RNA-seq reads\n" );
381
384
fprintf (fp_help , " - asm5/asm10/asm20 - asm-to-ref mapping, for ~0.1/1/5%% sequence divergence\n" );
382
385
fprintf (fp_help , " - sr - short reads against a reference\n" );
383
386
fprintf (fp_help , " - map-pb/map-hifi/map-ont/map-iclr - CLR/HiFi/Nanopore/ICLR vs reference mapping\n" );
0 commit comments