Skip to content

Commit

Permalink
Fix target class for DownloadSraProjectRunInfo
Browse files Browse the repository at this point in the history
  • Loading branch information
arteymix committed Mar 5, 2024
1 parent 766df06 commit 43767db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rnaseq_pipeline/sources/sra.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def run(self):
f.write(retrieve_runinfo(self.srp))

def output(self):
return luigi.ExpirableLocalTarget(join(cfg.OUTPUT_DIR, cfg.METADATA, 'sra', '{}.runinfo'.format(self.srp)), ttl=timedelta(days=14))
return ExpirableLocalTarget(join(cfg.OUTPUT_DIR, cfg.METADATA, 'sra', '{}.runinfo'.format(self.srp)), ttl=timedelta(days=14))

@requires(DownloadSraProjectRunInfo)
class DownloadSraProject(DynamicTaskWithOutputMixin, DynamicWrapperTask):
Expand Down

0 comments on commit 43767db

Please sign in to comment.