-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from karel-brinda/devel
Ococo 0.1.2.7
- Loading branch information
Showing
5 changed files
with
41 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,37 +5,38 @@ ococo \- Online variant and consensus caller | |
.SH SYNOPSIS | ||
ococo -i <SAM/BAM file> [other options] | ||
.SH DESCRIPTION | ||
Ococo is a program to call genomic consensus directly from an unsorted | ||
SAM/BAM stream. | ||
Ococo is a program to call variants and a genomic consensus directly from an | ||
unsorted SAM/BAM stream. | ||
.SS "Input options:" | ||
.TP | ||
\fB\-i\fR, \fB\-\-input\fR FILE | ||
Input SAM/BAM file (\- for standard input). | ||
.TP | ||
\fB\-f\fR, \fB\-\-fasta\-ref\fR FILE | ||
Initial FASTA reference (otherwise seq of N's is used). | ||
Initial FASTA reference (otherwise a seq of N's is used). | ||
.TP | ||
\fB\-s\fR, \fB\-\-stats\-in\fR FILE | ||
Input statistics. | ||
.SS "Output options:" | ||
.HP | ||
\fB\-F\fR, \fB\-\-fasta\-cons\fR FILE FASTA file with consensus | ||
\fB\-F\fR, \fB\-\-fasta\-cons\fR FILE | ||
Print consensus in FASTA. | ||
.TP | ||
\fB\-S\fR, \fB\-\-stats\-out\fR FILE | ||
Output statistics. | ||
Export statistics to a file. | ||
.TP | ||
\fB\-V\fR, \fB\-\-vcf\-cons\fR FILE | ||
VCF file with updates of consensus (\- for standard output) | ||
Print inferred variants in VCF (\- for standard output). | ||
.TP | ||
\fB\-P\fR, \fB\-\-pileup\fR FILE | ||
Truncated pileup (\- for standard output). | ||
Print SAMtools pileup (\- for standard output). | ||
.TP | ||
\fB\-\-verbose\fR | ||
Verbose mode (report every update of a counter). | ||
Use the verbose mode (report every update of a counter). | ||
.SS "Parameters for consensus calling:" | ||
.TP | ||
\fB\-x\fR, \fB\-\-counters\fR STR | ||
Counter configuration [ococo16]. | ||
Counter configuration [ococo32]. | ||
|
||
.TS | ||
l l l . | ||
|
@@ -74,7 +75,7 @@ Minimum coverage required for update [2]. | |
\fB\-M\fR, \fB\-\-maj\-thres\fR FLOAT | ||
Majority threshold [0.51]. | ||
.SH AUTHOR | ||
Written by Karel Brinda ([email protected]). | ||
Karel Brinda ([email protected]). | ||
.SH REPORTING BUGS | ||
Report bugs on https://github.com/karel-brinda/ococo/issues | ||
.SH EXAMPLES | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#pragma once | ||
|
||
namespace ococo { | ||
static const char *OCOCO_VERSION = "0.1.2.6"; | ||
static const char *OCOCO_VERSION = "0.1.2.7"; | ||
} |