Skip to content

Commit

Permalink
cmd fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasrausch committed Feb 27, 2020
1 parent 7bafb3f commit 0c0d71e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/filter.h
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ namespace rdxon {
}
if (showHelp) {
std::cout << std::endl;
std::cout << "Usage: " << argv[0] << " [OPTIONS] -x <kmer.x.map> -y <kmer.y.map> <input.fq.gz>" << std::endl;
std::cout << "Usage: rdxon " << argv[0] << " [OPTIONS] -x <kmer.x.map> -y <kmer.y.map> <input.fq.gz>" << std::endl;
std::cout << visible_options << "\n";
return 0;
}
Expand All @@ -221,6 +221,7 @@ namespace rdxon {
// Show cmd
boost::posix_time::ptime now = boost::posix_time::second_clock::local_time();
std::cout << '[' << boost::posix_time::to_simple_string(now) << "] ";
std::cout << "rdxon ";
for(int i=0; i<argc; ++i) { std::cout << argv[i] << ' '; }
std::cout << std::endl;

Expand Down

0 comments on commit 0c0d71e

Please sign in to comment.