From 7478aa32328c54709f9aad312d1cd18f95135439 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20B=C5=99inda?= Date: Thu, 8 Nov 2018 17:39:42 -0500 Subject: [PATCH] Revert "Fix adding space prefixes to lines" This reverts commit 1683e2db7a78d73cb3ae4649071094e910a54f30. --- Makefile | 4 +-- README.md | 90 +++++++++++++++++++++++++++---------------------------- 2 files changed, 47 insertions(+), 47 deletions(-) diff --git a/Makefile b/Makefile index d4405ee..84ca553 100644 --- a/Makefile +++ b/Makefile @@ -39,8 +39,8 @@ readme: f=$$(mktemp);\ echo $$f;\ sed '/USAGE-BEGIN/q' README.md >> $$f; \ - printf -- '-->\n```\n' >> $$f; \ - man ./ococo.1 | col -b | grep -A999999 SYNO | grep -B99999999 AUTH | ghead -n -1 | awk '{printf " %s\n", $$0}' >> $$f; \ + printf -- '-->\n```' >> $$f; \ + man ./ococo.1 | col -b | grep -A999999 SYNO | grep -B99999999 AUTH | ghead -n -1 >> $$f; \ printf '```\n -``` - SYNOPSIS - ococo -i [other options] - DESCRIPTION - Ococo is a program to call genomic consensus directly from an unsorted - SAM/BAM stream. +```NAME +SYNOPSIS + ococo -i [other options] - Input options: - -i, --input FILE - Input SAM/BAM file (- for standard input). +DESCRIPTION + Ococo is a program to call genomic consensus directly from an unsorted + SAM/BAM stream. - -f, --fasta-ref FILE - Initial FASTA reference (otherwise seq of N's is used). + Input options: + -i, --input FILE + Input SAM/BAM file (- for standard input). - -s, --stats-in FILE - Input statistics. + -f, --fasta-ref FILE + Initial FASTA reference (otherwise seq of N's is used). - Output options: - -F, --fasta-cons FILE FASTA file with consensus + -s, --stats-in FILE + Input statistics. - -S, --stats-out FILE - Output statistics. + Output options: + -F, --fasta-cons FILE FASTA file with consensus - -V, --vcf-cons FILE - VCF file with updates of consensus (- for standard output) + -S, --stats-out FILE + Output statistics. - -P, --pileup FILE - Truncated pileup (- for standard output). + -V, --vcf-cons FILE + VCF file with updates of consensus (- for standard output) - --verbose - Verbose mode (report every update of a counter). + -P, --pileup FILE + Truncated pileup (- for standard output). - Parameters for consensus calling: - -x, --counters STR - Counter configuration [ococo16]. + --verbose + Verbose mode (report every update of a counter). + Parameters for consensus calling: + -x, --counters STR + Counter configuration [ococo16]. - configuration bits/counter bits/position - ococo16 3 16 - ococo32 7 32 - ococo64 15 64 + configuration bits/counter bits/position + ococo16 3 16 + ococo32 7 32 + ococo64 15 64 - -m, --mode STR - Mode [batch]. + -m, --mode STR + Mode [batch]. - mode description - real-time updates reported immediately - batch updates reported after end of algn stream + mode description + real-time updates reported immediately + batch updates reported after end of algn stream - -q, --min-MQ INT - Skip alignments with mapping quality smaller than INT [1]. - -Q, --min-BQ INT - Skip bases with base quality smaller than INT [13]. + -q, --min-MQ INT + Skip alignments with mapping quality smaller than INT [1]. - -w, --ref-weight INT - Initial counter value for nucleotides from ref [0]. + -Q, --min-BQ INT + Skip bases with base quality smaller than INT [13]. - -c, --min-cov INT - Minimum coverage required for update [2]. + -w, --ref-weight INT + Initial counter value for nucleotides from ref [0]. - -M, --maj-thres FLOAT - Majority threshold [0.51]. + -c, --min-cov INT + Minimum coverage required for update [2]. + -M, --maj-thres FLOAT + Majority threshold [0.51]. ```