Skip to content
Snippets Groups Projects
Commit eaa55d3d authored by Vincent Alexander Croft's avatar Vincent Alexander Croft
Browse files

configureHypoTool->createHypoTools

parent 355b8540
No related branches found
No related tags found
No related merge requests found
......@@ -438,7 +438,7 @@ class MenuSequence(object):
self._hypo.Alg.name(), input_maker_output, self._hypo.Alg.name(), self._hypo.readOutputList()[0])
def configureHypoTool(self, chainDict):
def createHypoTools(self, chainDict):
if type(self._hypoToolConf) is list:
log.warning ("This sequence %s has %d multiple HypoTools ",self.sequence.name, len(self.hypoToolConf))
for hypo, hypoToolConf in zip(self._hypo, self._hypoToolConf):
......@@ -630,12 +630,12 @@ class Chain(object):
chainDict = listOfChainDictsLegs[0]
chainDict['chainName']= self.name # rename the chaindict to remove the leg name
for seq in step.sequences:
seq.configureHypoTool( chainDict ) #this creates the HypoTools
seq.createHypoTools( chainDict ) #this creates the HypoTools
continue
# add one hypotool per sequence and chain part
for seq, onePartChainDict in zip(step.sequences, listOfChainDictsLegs):
seq.configureHypoTool( onePartChainDict )#this creates the HypoTools
seq.createHypoTools( onePartChainDict )#this creates the HypoTools
def __repr__(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment