Skip to content

Commit e7a92de

Browse files
committed
Make walltime for AlignSample tasks configurable
1 parent d031262 commit e7a92de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rnaseq_pipeline/tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ class AlignSample(ScheduledExternalProgramTask):
293293

294294
cpus = 8
295295
memory = 32
296-
walltime = datetime.timedelta(days=1)
296+
walltime = luigi.TimeDeltaParameter(default='1d', significant=False, positional=False)
297297

298298
# cleanup unused shared memory objects before and after the task is run
299299
# FIXME: move this into the configuration

0 commit comments

Comments
 (0)