Skip to content

Commit

Permalink
Fixed the version number
Browse files Browse the repository at this point in the history
  • Loading branch information
iminkin committed Sep 25, 2020
1 parent b8e9f73 commit 0152320
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 9 deletions.
6 changes: 0 additions & 6 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
Plans for TwoPaCo 1.0.0:
* Support of GFF
* Better way of changing the maximum value of K
* Better description of the example (probably a sort of detailed tutorial)
* Documentation on reading the binary output directly

TwoPaCo 0.9.4
=============
* Added the installation scripts
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
TwoPaCo 0.9.4

Release date: ---
Release date: 25th September 2020
=============================

Authors
Expand Down
2 changes: 1 addition & 1 deletion src/graphconstructor/constructor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ int main(int argc, char * argv[])
OddConstraint constraint;
try
{
TCLAP::CmdLine cmd("Program for construction of the condensed de Bruijn graph from complete genomes", ' ', "0.9.3");
TCLAP::CmdLine cmd("Program for construction of the condensed de Bruijn graph from complete genomes", ' ', "0.9.4");

TCLAP::ValueArg<unsigned int> kvalue("k",
"kvalue",
Expand Down
2 changes: 1 addition & 1 deletion src/graphdump/graphdump.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,7 @@ int main(int argc, char * argv[])
std::copy(format.begin(), format.begin(), std::ostream_iterator<std::string>(formatString, "|"));
try
{
TCLAP::CmdLine cmd("This utility converts the binary output of TwoPaCo to another format", ' ', "0.9.3");
TCLAP::CmdLine cmd("This utility converts the binary output of TwoPaCo to another format", ' ', "0.9.4");
TCLAP::SwitchArg prefix("", "prefix", "Add a prefix to segments in GFA (in case if you have genomes with identical FASTA headers)", cmd, false);

TCLAP::UnlabeledValueArg<std::string> inputFileName("infile",
Expand Down

0 comments on commit 0152320

Please sign in to comment.