Skip to content

Commit

Permalink
Merge branch 'feature/catalog' of github.com:EBIvariation/eva-pipelin…
Browse files Browse the repository at this point in the history
…e into feature/catalog
  • Loading branch information
Cristina Yenyxe Gonzalez Garcia committed May 28, 2015
2 parents 11f91e6 + a06ef69 commit 482bbf7
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion variants_statistics.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,14 @@ def output(self):
'file' : luigi.LocalTarget(newest[1]) }

raise RuntimeError('No statistics files found')


def complete(self):
try:
self.output()
except RuntimeError:
return False

return True


class LoadVariantsStatistics(luigi.Task):
Expand Down

0 comments on commit 482bbf7

Please sign in to comment.