You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// } else if (n_full_cover_reads > n_noisy_reg_reads * 0.75 && reg_end - reg_beg + 1 <= 10000) { // de novo consensus calling using all reads, up to 2 consensus sequences
fprintf(stderr, " -g --gap-aln STR put gap on the \'left\' or \'right\' side in alignment [left/l]\n");
398
+
fprintf(stderr, " \'left\': ATTTG\n");
399
+
fprintf(stderr, " | |||\n");
400
+
fprintf(stderr, " A-TTG\n");
401
+
fprintf(stderr, " \'right\': ATTTG\n");
402
+
fprintf(stderr, " ||| |\n");
403
+
fprintf(stderr, " ATT-G\n");
388
404
// fprintf(stderr, "\n");
389
-
fprintf(stderr, " Variant:\n");
405
+
fprintf(stderr, " Variant calling:\n");
390
406
fprintf(stderr, " -d --min-depth INT min. depth to call a variant [%d]\n", LONGCALLD_MIN_CAND_DP);
391
407
fprintf(stderr, " -D --alt-depth INT min. alt. depth to call a variant [%d]\n", LONGCALLD_MIN_ALT_DP);
408
+
fprintf(stderr, " -a --min-af FLOAT min. allele frequency to call a variant [%.2f]\n", LONGCALLD_MIN_CAND_AF);
392
409
// fprintf(stderr, " -p --max-ploidy INT max. ploidy [%d]\n", LONGCALLD_DEF_PLOID);
393
-
fprintf(stderr, " -x --max-xgap INT max. number of allowed substitutions/gap-bases in a searching window(-w/--win-size) [%d]\n", LONGCALLD_NOISY_REG_MAX_XGAPS);
410
+
fprintf(stderr, " Noisy regions:\n");
411
+
fprintf(stderr, " -x --max-xgap INT max. number of allowed substitutions/gap-bases in a sliding window(-w/--win-size) [%d]\n", LONGCALLD_NOISY_REG_MAX_XGAPS);
394
412
fprintf(stderr, " window with more than -x subs/gap-bases will be considered as noisy region\n");
395
413
fprintf(stderr, " -w --win-size INT window size for searching noisy region [%d]\n", LONGCALLD_NOISY_REG_SLIDE_WIN);
414
+
fprintf(stderr, " -j --noisy-rat FLOAT min. ratio of noisy reads in a window to call a noisy region [%.2f]\n", LONGCALLD_NOISY_REG_RATIO);
396
415
// fprintf(stderr, " -f --noisy-flank INT flanking mask window size for noisy region [%d]\n", LONGCALLD_DENSE_FLANK_WIN);
397
-
fprintf(stderr, " -c --end-clip INT max. number of clipping bases on both ends [%d]\n", LONGCALLD_NOISY_END_CLIP);
398
-
fprintf(stderr, " end-clipping region with more than -c bases will be considered as noisy clipping region\n");
399
-
fprintf(stderr, " -F --clip-flank INT flanking mask window size for noisy clipping region [%d]\n", LONGCALLD_NOISY_END_CLIP_WIN);
416
+
// fprintf(stderr, " -c --end-clip INT max. number of clipping bases on both ends [%d]\n", LONGCALLD_NOISY_END_CLIP);
417
+
// fprintf(stderr, " end-clipping region with more than -c bases will be considered as noisy clipping region\n");
418
+
// fprintf(stderr, " -F --clip-flank INT flanking mask window size for noisy clipping region [%d]\n", LONGCALLD_NOISY_END_CLIP_WIN);
400
419
// fprintf(stderr, "\n");
401
-
fprintf(stderr, " Alignment\n");
402
-
fprintf(stderr, " -g --gap-aln STR put gap on the \'left\' or \'right\' side in alignment [left/l]\n");
fprintf(stderr, " -p --hap-reads INT when haplotype is available, min. number of full-spanning reads for each haplotype in noisy region to call a variant [%d]\n", LONGCALLD_MIN_HAP_FULL_READS);
421
+
fprintf(stderr, " -f --full-reads INT when haplotype is not available, min. number of full-spanning reads in noisy region to call a variant [%d]\n", LONGCALLD_MIN_NO_HAP_FULL_READS);
0 commit comments