-
I am trying to construct a protein model with a new force field downloaded from the following repository: I attempted to generate a topology file using the following command:
However, I encountered the following error message:
I suspect there may be an issue with how I’ve set up the mappings or force field directories, but I’m not sure how to resolve it. Has anyone encountered this issue or have advice on troubleshooting? Any guidance would be appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
The "universal" forcefield has been retired a few releases back, and renamed to "charmm". You'll need to adapt the mappings to reflect this change. In the |
Beta Was this translation helpful? Give feedback.
The "universal" forcefield has been retired a few releases back, and renamed to "charmm". You'll need to adapt the mappings to reflect this change. In the
[from]
section of the mapping files it should read "charmm", instead of "universal". You can probably do something likefind . -iname '*\.map*' -exec sed -i -re /universal/charmm/g {}+
to get it all in one batch, but check my work ;)