Skip to content

Commit

Permalink
Move AMBD ref to other bibtex file, fix typos
Browse files Browse the repository at this point in the history
and assorted small fixes thanks to code review by Giacomo
  • Loading branch information
jhenin authored and giacomofiorin committed Jun 4, 2024
1 parent b0d93e6 commit 7c2fbaa
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 35 deletions.
14 changes: 1 addition & 13 deletions doc/colvars-code-refs.bib
Original file line number Diff line number Diff line change
Expand Up @@ -329,19 +329,6 @@ @article{White2014
url = {https://doi.org/10.1021/ct500320c}
}

% ABMD bias
@Article{Marchi1999,
author = {Massimo Marchi and Pietro Ballone},
journal = {J. Chem. Phys.},
title = {Adiabatic bias molecular dynamics: A method to navigate the conformational space of complex molecular systems},
year = {1999},
number = {8},
pages = {3697-3702},
volume = {110},
doi = {10.1063/1.478259},
url = {https://doi.org/10.1063/1.478259},
}


% --- NO CITATIONS AVAILABLE YET FOR THESE FEATURES ---
% Colvars-GROMACS interface
Expand All @@ -355,4 +342,5 @@ @Article{Marchi1999
% coordNum pairlist
% Custom functions (Lepton)
% Scripted functions (Tcl)
% ABMD bias
% --- END ---
12 changes: 12 additions & 0 deletions doc/colvars-refman.bib
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,18 @@ @ARTICLE{Leines2012
pages = {020601},
}

@Article{Marchi1999,
author = {Massimo Marchi and Pietro Ballone},
journal = {J. Chem. Phys.},
title = {Adiabatic bias molecular dynamics: A method to navigate the conformational space of complex molecular systems},
year = {1999},
number = {8},
pages = {3697-3702},
volume = {110},
doi = {10.1063/1.478259},
url = {https://doi.org/10.1063/1.478259},
}

@ARTICLE{Marinelli2009,
author = {Marinelli, Fabrizio AND Pietrucci, Fabio AND Laio, Alessandro AND Piana, Stefano},
journal = {PLOS Computational Biology},
Expand Down
2 changes: 1 addition & 1 deletion src/colvarbias_abmd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ std::ostream & colvarbias_abmd::write_traj_label(std::ostream &os)
{
size_t const this_cv_width = (variables(0)->value()).output_width(cvm::cv_width);
os << " ref_"
<< cvm::wrap_string(variables(0)->name, this_cv_width-3);
<< cvm::wrap_string(variables(0)->name, this_cv_width-4);

return os;
}
Expand Down
3 changes: 1 addition & 2 deletions src/colvarbias_abmd.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@
#include "colvarbias_restraint.h"


/// \brief Wall restraint
/// (implementation of \link colvarbias_restraint \endlink)
/// \brief Adiabatic Bias MD
class colvarbias_abmd
: public colvarbias_ti
{
Expand Down
22 changes: 3 additions & 19 deletions src/colvarmodule_refs.h
Original file line number Diff line number Diff line change
Expand Up @@ -344,22 +344,6 @@
" url = {https://doi.org/10.1021/ct500320c}\n"
"}\n";

paper_count_[std::string("Marchi1999")] = 0;
paper_url_[std::string("Marchi1999")] = "https://doi.org/10.1063/1.478259";
paper_bibtex_[std::string("Marchi1999")] =
"\n"
"@Article{Marchi1999,\n"
" author = {Massimo Marchi and Pietro Ballone},\n"
" journal = {J. Chem. Phys.},\n"
" title = {Adiabatic bias molecular dynamics: A method to navigate the conformational space of complex molecular systems},\n"
" year = {1999},\n"
" number = {8},\n"
" pages = {3697-3702},\n"
" volume = {110},\n"
" doi = {10.1063/1.478259},\n"
" url = {https://doi.org/10.1063/1.478259},\n"
"}\n";

paper_count_[std::string("n/a")] = 0;
paper_url_[std::string("n/a")] = "";
paper_bibtex_[std::string("n/a")] = "";
Expand Down Expand Up @@ -571,9 +555,6 @@
feature_count_[std::string("ALB colvar bias implementation")] = 0;
feature_paper_map_[std::string("ALB colvar bias implementation")] = "White2014";

feature_count_[std::string("ABMD bias")] = 0;
feature_paper_map_[std::string("ABMD bias")] = "Marchi1999";

feature_count_[std::string("Colvars-GROMACS interface")] = 0;
feature_paper_map_[std::string("Colvars-GROMACS interface")] = "n/a";

Expand Down Expand Up @@ -606,3 +587,6 @@

feature_count_[std::string("Scripted functions (Tcl)")] = 0;
feature_paper_map_[std::string("Scripted functions (Tcl)")] = "n/a";

feature_count_[std::string("ABMD bias")] = 0;
feature_paper_map_[std::string("ABMD bias")] = "n/a";

0 comments on commit 7c2fbaa

Please sign in to comment.