schrodinger.pipeline.input module¶
Classes for writing Pipeline input files.
Copyright Schrodinger, LLC. All rights reserved.
- class schrodinger.pipeline.input.Writer(filename=None, comment=None)¶
Bases:
object
Class for writing pipeline input files.
- __init__(filename=None, comment=None)¶
- write(filename=None)¶
Serialize the job parameters to a file.
- addVar(vname, vclass, data, comment=None)¶
Add a variable of name
vname
and classvclass
. Forvclass
of “PhaseDB” and “Grid”,data
should be a single path; forvclass
of “Structures”,data
should be a list of files.The argument
comment
is ignored.
- userOutput(varname)¶
Append output parameter descriptors to
self.userouts
.
- setStructureOutput(varname)¶
Set structure output to
varname
(overwriting the previous one, if any). The structures from this variable will be imported into Maestro when incorporating.
- addStage(sname, sclass, inputs, outputs, keywords=None, comment=None)¶
Add a stage.
The
comment
argument is ignored.
- class schrodinger.pipeline.input.LinearWriter(filename, comment=None)¶
Bases:
schrodinger.pipeline.input.Writer
Class for writing linear stage maps (ones with no branches).
- __init__(filename, comment=None)¶
- addVar(vname, vclass, files, comment=None)¶
- addStage(sname, sclass, output, keywords=None, comment=None)¶