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

Rename waterref to mdref #58

Merged
merged 2 commits into from
Aug 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions examples/docking/docking.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[input]
# in which order the steps must be executed?
order = ["topology", "rigidbody", "flexref", "waterref"]
order = ["topology", "rigidbody", "flexref", "mdref"]

# directory in which the scoring will be done
project_dir = "run1"
Expand All @@ -30,7 +30,7 @@ ambig = 'ambig.tbl'
ambig = 'ambig.tbl'
cool1_steps = 500

[stage.waterref]
[stage.mdref]
ambig = 'ambig.tbl'
cool1_steps = 10

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ class HaddockModule(BaseHaddockModule):
def __init__(self, stream, order, path):
self.stream = stream
recipe_path = Path(__file__).resolve().parent.absolute()
cns_script = recipe_path / "cns" / "waterref.cns"
defaults = recipe_path / "cns" / "waterref.toml"
cns_script = recipe_path / "cns" / "mdref.cns"
defaults = recipe_path / "cns" / "mdref.toml"
super().__init__(order, path, cns_script, defaults)

def run(self, module_information):
logger.info("Running [waterref] module")
logger.info("Running [mdref] module")

# Pool of jobs to be executed by the CNS engine
jobs = []
Expand Down