Skip to content

Commit

Permalink
few modifications
Browse files Browse the repository at this point in the history
  • Loading branch information
srbcheema1 committed Sep 22, 2018
1 parent c24538f commit e3affd7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ namespace po = boost::program_options;

po::options_description build_command_line_options()
{
std::string version = "vcf_validator";
po::options_description description("Usage: vcf-validator [OPTIONS] [< input_file]\nAllowed options");
std::string version = "srb_decompressor";
po::options_description description("Usage: srb_decompressor [OPTIONS] [< input_file]\nAllowed options");

description.add_options()
(srb::HELP_OPTION, "Display this help")
(srb::VERSION_OPTION, "Display version of the validator")
(srb::VERSION_OPTION, "Display version of the decompressor")
(srb::INPUT_OPTION, po::value<std::string>()->default_value(srb::STDIN), "Path to the input file, or stdin")
(srb::OUTDIR_OPTION, po::value<std::string>()->default_value(""), "Output directory")
;
Expand Down

0 comments on commit e3affd7

Please sign in to comment.