Skip to content

Commit 43767db

Browse files
committed
Fix target class for DownloadSraProjectRunInfo
1 parent 766df06 commit 43767db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rnaseq_pipeline/sources/sra.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ def run(self):
175175
f.write(retrieve_runinfo(self.srp))
176176

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

180180
@requires(DownloadSraProjectRunInfo)
181181
class DownloadSraProject(DynamicTaskWithOutputMixin, DynamicWrapperTask):

0 commit comments

Comments
 (0)