Skip to content

Commit

Permalink
Show help for offset option, closes #1084
Browse files Browse the repository at this point in the history
  • Loading branch information
benmwebb committed Nov 9, 2023
1 parent c575056 commit 756a172
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/multi_state/bin/multi_foxs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,7 @@ int main(int argc, char* argv[]) {
("min_c2", po::value<double>(&min_c2)->default_value(-0.5, "-0.50"), "min c2 value")
("max_c2", po::value<double>(&max_c2)->default_value(2.0, "2.00"), "max c2 value")
("partial_profiles,p", "use precomputed partial profiles (default = true)")
("offset,o", "use offset in fitting (default = false)")
("multi-model-pdb,m", po::value<int>(&multi_model_pdb)->default_value(1),
"1 - read the first MODEL only (default), \
2 - read each MODEL into a separate structure, \
Expand All @@ -213,7 +214,6 @@ recommended q value is 0.2")
hidden.add_options()
("input-files", po::value< std::vector<std::string> >(),
"input profile files")
("offset,o", "use offset in fitting (default = false)")
;

po::options_description cmdline_options;
Expand Down
2 changes: 1 addition & 1 deletion modules/multi_state/bin/multi_foxs_combination.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ int main(int argc, char* argv[]) {
("max_c1", po::value<double>(&max_c1)->default_value(1.05, "1.05"), "max c1 value")
("min_c2", po::value<double>(&min_c2)->default_value(-0.5, "-0.50"), "min c2 value")
("max_c2", po::value<double>(&max_c2)->default_value(2.0, "2.00"), "max c2 value")
("offset,o", "use offset in fitting (default = false)")
("multi-model-pdb,m", po::value<int>(&multi_model_pdb)->default_value(1),
"1 - read the first MODEL only (default), \
2 - read each MODEL into a separate structure, \
Expand All @@ -165,7 +166,6 @@ recommended q value is 0.2")
hidden.add_options()
("input-files", po::value< std::vector<std::string> >(),
"input profile files")
("offset,o", "use offset in fitting (default = false)")
;

po::options_description cmdline_options;
Expand Down

0 comments on commit 756a172

Please sign in to comment.