From 0e2627799ead57257d93028beb2d1dedf5259adc Mon Sep 17 00:00:00 2001 From: Guillaume Poirier-Morency Date: Fri, 13 Oct 2023 13:47:34 -0700 Subject: [PATCH] Make SubmitExperimentBatchInfoToGemma rerunnable --- rnaseq_pipeline/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rnaseq_pipeline/tasks.py b/rnaseq_pipeline/tasks.py index 27ec27de..57f0e6db 100755 --- a/rnaseq_pipeline/tasks.py +++ b/rnaseq_pipeline/tasks.py @@ -362,7 +362,7 @@ def output(self): return [luigi.LocalTarget(join(destdir, f'{self.experiment_id}_counts.{self.scope}')), luigi.LocalTarget(join(destdir, f'{self.experiment_id}_fpkm.{self.scope}'))] -class SubmitExperimentBatchInfoToGemma(GemmaTask): +class SubmitExperimentBatchInfoToGemma(RerunnableTaskMixin, GemmaTask): """ Submit the batch information of an experiment to Gemma. """