Skip to content

Commit

Permalink
update version and usage help
Browse files Browse the repository at this point in the history
  • Loading branch information
amkozlov committed May 20, 2019
1 parent ec213b6 commit 0a064e9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
8 changes: 4 additions & 4 deletions src/CommandLineParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -916,15 +916,15 @@ void CommandLineParser::print_help()
"General options:\n"
" --seed VALUE seed for pseudo-random number generator (default: current time)\n"
" --pat-comp on | off alignment pattern compression (default: ON)\n"
" --tip-inner on | off tip-inner case optimization (default: ON)\n"
" --tip-inner on | off tip-inner case optimization (default: OFF)\n"
" --site-repeats on | off use site repeats optimization, 10%-60% faster than tip-inner (default: ON)\n" <<
" --threads VALUE number of parallel threads to use (default: " << sysutil_get_cpu_cores() << ")\n" <<
" --simd none | sse3 | avx | avx2 vector instruction set to use (default: auto-detect).\n"
" --rate-scalers on | off use individual CLV scalers for each rate category (default: OFF)\n"
" --force disable all safety checks (please think twice!)\n"
" --rate-scalers on | off use individual CLV scalers for each rate category (default: ON for >2000 taxa)\n"
" --force [ <CHECKS> ] disable safety checks (please think twice!)\n"
"\n"
"Model options:\n"
" --model <name>+G[n]+<Freqs> | FILE model specification OR partition file (default: GTR+G4)\n"
" --model <name>+G[n]+<Freqs> | FILE model specification OR partition file\n"
" --brlen linked | scaled | unlinked branch length linkage between partitions (default: scaled)\n"
" --blmin VALUE minimum branch length (default: 1e-6)\n"
" --blmax VALUE maximum branch length (default: 100)\n"
Expand Down
3 changes: 1 addition & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,7 @@ void print_banner()
"Sarah Lutteropp, Ben Bettisworth." << endl;
LOG_INFO << "Latest version: https://github.com/amkozlov/raxml-ng" << endl;
LOG_INFO << "Questions/problems/suggestions? "
"Please visit: https://groups.google.com/forum/#!forum/raxml" << endl;
LOG_INFO << endl << "WARNING: This is a BETA release, please use at your own risk!" << endl << endl;
"Please visit: https://groups.google.com/forum/#!forum/raxml" << endl << endl;
}

void init_part_info(RaxmlInstance& instance)
Expand Down
4 changes: 2 additions & 2 deletions src/version.h
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#define RAXML_VERSION "0.8.1git BETA"
#define RAXML_DATE "23.04.2019"
#define RAXML_VERSION "0.9.0"
#define RAXML_DATE "20.05.2019"

0 comments on commit 0a064e9

Please sign in to comment.