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

fixed rogue seq on l 396

parent 6a186be7
No related branches found
No related tags found
No related merge requests found
...@@ -393,7 +393,7 @@ class MenuSequence(object): ...@@ -393,7 +393,7 @@ class MenuSequence(object):
def configureHypoTool(self, chainDict): def configureHypoTool(self, chainDict):
if type(self.hypoToolConf) is list: if type(self.hypoToolConf) is list:
log.warning ("This sequence %s has %d multiple HypoTools ",seq.sequence.name, len(seq.hypoToolConf)) log.warning ("This sequence %s has %d multiple HypoTools ",self.sequence.name, len(seq.hypoToolConf))
for hypo, hypoToolConf in zip(self._hypo, self.hypoToolConf): for hypo, hypoToolConf in zip(self._hypo, self.hypoToolConf):
hypoToolConf.setConf( chainDict ) hypoToolConf.setConf( chainDict )
hypo.addHypoTool(self.hypoToolConf) hypo.addHypoTool(self.hypoToolConf)
......
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