Commit 83e1a654 by Maarten L. Hekkelman

update for meta project

parents 4f3ec42b 38d93cf0
Subproject commit f7b04e8a2f75230b2726f4deda7d81c86d15f3e3
......@@ -70,7 +70,7 @@ int d_main(int argc, const char *argv[])
auto &config = cfg::config::instance();
config.init(
config.init("Usage: mkdssp [options] input-file [output-file]",
cfg::make_option<std::string>("output-format", "Output format, can be either 'dssp' for classic DSSP or 'mmcif' for annotated mmCIF. The default is chosen based on the extension of the output file, if any."),
cfg::make_option<short>("min-pp-stretch", 3, "Minimal number of residues having PSI/PHI in range for a PP helix, default is 3"),
cfg::make_option("write-other", "If set, write the type OTHER for loops, default is to leave this out"),
......@@ -97,9 +97,7 @@ int d_main(int argc, const char *argv[])
if (config.has("help"))
{
std::cerr << "Usage: mkdssp [options] input-file [output-file]" << std::endl
<< std::endl
<< config << std::endl;
std::cerr << config << std::endl;
exit(0);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment