Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GO IDP bugfix #590

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion vermouth/data/force_fields/martini3001/citations.bib
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,11 @@ @article{MDTraj
pages={1528 -- 1532},
year={2015},
doi={10.1016/j.bpj.2015.08.015}
}
}
@article{M3_GO,
title={GōMartini 3: From large conformational changes in proteins to environmental bias corrections},
author={Souza, Paulo C. T. and Araujo, Luis P. Borges and Brasnett, Chris and Moreira, Rodrigo A. and Grunewald, Fabian and Park, Peter and Wang, Liguo and Razmazma, Hafez and Borges-Araujo, Ana C. and Cofas-Vargas, Luis F. and Monticelli, Luca and Mera-Adasme, Raul and Melo, Manuel N. and Wu, Sangwook and Marrink, Siewert J. and Poma, Adolfo B. and Thallmair, Sebastian},
url={https://www.biorxiv.org/content/10.1101/2024.04.15.589479v1},
doi={10.1101/2024.04.15.589479},
year={2024},
}
1 change: 1 addition & 0 deletions vermouth/processors/water_bias.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ def assign_residue_water_bias(self, molecule, res_graph):

if _in_resid_region(_old_resid, self.idr_regions):
eps = self.water_bias.get('idr', 0.0)
sec_struc = res_graph.nodes[res_node]['cgsecstruct']
elif self.auto_bias:
sec_struc = res_graph.nodes[res_node]['cgsecstruct']
eps = self.water_bias.get(sec_struc, 0.0)
Expand Down
1 change: 1 addition & 0 deletions vermouth/rcsu/go_vs_includes.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ def run_molecule(self, molecule):

if not self.system:
raise ValueError('This processor requires a system.')
molecule.citations.add('M3_GO')

self.add_virtual_sites(molecule, prefix=moltype)

Expand Down
Loading