Skip to content

Commit ebde490

Browse files
committed
Add a priority to GenerateReportForExperiment
1 parent 298d201 commit ebde490

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

rnaseq_pipeline/tasks.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -327,6 +327,8 @@ class GenerateReportForExperiment(RerunnableTaskMixin, luigi.Task):
327327
The report include collected FastQC reports and RSEM/STAR outputs.
328328
"""
329329

330+
priority = luigi.IntParameter(default=100, positional=False, significant=False)
331+
330332
def run(self):
331333
fastqc_dir = join(cfg.OUTPUT_DIR, cfg.DATAQCDIR, self.experiment_id)
332334
search_dirs = [

0 commit comments

Comments
 (0)