Skip to content

Commit

Permalink
Fixed version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
iminkin committed May 18, 2017
1 parent 580402e commit bc53d8f
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
TwoPaCo 0.9.1
TwoPaCo 0.9.2

Release date: 29th March 2017
Release date: 18th May 2017
=============================

Authors
Expand Down
2 changes: 1 addition & 1 deletion example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Introduction
Here is an example of the de Bruijn graph built from a small input with k=11.
Below are commands used to produce the files. Run TwoPaCo:

twopaco -f 20 -k 11 example.fa -o example1.dbg
twopaco -f 20 -k 11 example.fa -o example.dbg

Get DOT file for Graphviz visualisation and render it:

Expand Down
2 changes: 1 addition & 1 deletion src/graphconstructor/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ target_link_libraries(twopaco "tbb")

set(CPACK_PACKAGE_VERSION_MAJOR "0")
set(CPACK_PACKAGE_VERSION_MINOR "9")
set(CPACK_PACKAGE_VERSION_PATCH "0")
set(CPACK_PACKAGE_VERSION_PATCH "2")
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.0");
TCLAP::CmdLine cmd("Program for construction of the condensed de Bruijn graph from complete genomes", ' ', "0.9.2");

TCLAP::ValueArg<unsigned int> kvalue("k",
"kvalue",
Expand Down
2 changes: 1 addition & 1 deletion src/graphdump/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ target_link_libraries(graphdump "tbb")

set(CPACK_PACKAGE_VERSION_MAJOR "0")
set(CPACK_PACKAGE_VERSION_MINOR "9")
set(CPACK_PACKAGE_VERSION_PATCH "0")
set(CPACK_PACKAGE_VERSION_PATCH "2")
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.0");
TCLAP::CmdLine cmd("This utility converts the binary output of TwoPaCo to another format", ' ', "0.9.2");
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 bc53d8f

Please sign in to comment.