-
Notifications
You must be signed in to change notification settings - Fork 2
Add proteinbox workflow #15
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
Open
MSiggel
wants to merge
14
commits into
main
Choose a base branch
from
feature/protein-box
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
2ffc0b3
Add proteinbox models: ProteinSpecies, ProteinBoxComposition, Pdb2gmx…
MSiggel 9d47492
Add setup/protein.py: pdb2gmx wrapper, PDB cleaning, topology utilities
MSiggel 9eefb34
Add relax_with_protein_restraints() to openmm_utils.py
MSiggel 496888d
Add build_proteinbox() and wire up dispatch in workflows.py
MSiggel a405ace
Add proteinbox MDP run schedule files (CHARMM36m settings)
MSiggel 1c7fe01
Track proteinbox MDP files (force-add past .gitignore *.mdp rule)
MSiggel f03dc7c
Add proteinbox tests and example YAML
MSiggel 263cf54
Fix review findings: Path import, cwd paths, metadata, protonation
MSiggel decb36d
Add force field check, fix grompp cleanup, fix file handle leak
MSiggel c07392a
Add force field registry with auto-download and fix charge parsing
MSiggel 848041e
Add [gromacs] config section for gmx path and force field management
MSiggel 4d0dd49
Align proteinbox gromacs configuration
MSiggel 733a84d
Fix proteinbox lint formatting
MSiggel 7de3b9e
Mock gmx binary in proteinbox unit test
MSiggel File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| simulation_type: proteinbox | ||
| engine: gromacs | ||
| parametrization: pdb2gmx | ||
| parametrization_config: | ||
| type: pdb2gmx | ||
| forcefield: charmm36m | ||
| water_model: tip3p | ||
| ignh: true | ||
|
|
||
| system: | ||
| protein: | ||
| resname: LYZ | ||
| count: 1 | ||
| pdb_path: ./1aki.pdb | ||
| disulfide_bonds: | ||
| - [6, 127] | ||
| - [30, 115] | ||
| - [64, 80] | ||
| - [76, 94] | ||
| protonation_states: | ||
| HIS15: HIE | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should be a list of key-value pairs, right? |
||
| box_padding: 12.0 | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Consistent naming, as in other system types? |
||
| ionization: | ||
| neutralize: true | ||
| concentration: 0.15 | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bad key name, have no idea what that means.