Skip to content

Commit

Permalink
Revert "Fix adding space prefixes to lines"
Browse files Browse the repository at this point in the history
This reverts commit 1683e2d.
  • Loading branch information
karel-brinda committed Nov 8, 2018
1 parent 1683e2d commit 7478aa3
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 47 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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<!---\n' >> $$f; \
sed -n '/USAGE-END/,$$ p' README.md >> $$f;\
cat $$f \
Expand Down
90 changes: 45 additions & 45 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,74 +68,74 @@ conda install -c bioconda ococo
<!---
USAGE-BEGIN
-->
```
SYNOPSIS
ococo -i <SAM/BAM file> [other options]

DESCRIPTION
Ococo is a program to call genomic consensus directly from an unsorted
SAM/BAM stream.
```NAME
SYNOPSIS
ococo -i <SAM/BAM file> [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].
```
<!---
USAGE-END
Expand Down

0 comments on commit 7478aa3

Please sign in to comment.