|
23 | 23 | from .sources.sra import DownloadSraProject, DownloadSraExperiment, ExtractSraProjectBatchInfo
|
24 | 24 | from .targets import GemmaDatasetPlatform, GemmaDatasetHasBatch, RsemReference
|
25 | 25 | from .utils import no_retry, IlluminaFastqHeader, RerunnableTaskMixin, remove_task_output
|
26 |
| -from .gemma import GemmaTask |
| 26 | +from .gemma import GemmaTask, gemma |
27 | 27 |
|
28 | 28 | logger = logging.getLogger('luigi-interface')
|
29 | 29 |
|
30 | 30 | cfg = rnaseq_pipeline()
|
| 31 | +gemma_cfg = gemma() |
31 | 32 |
|
32 | 33 | class DownloadSample(TaskWithOutputMixin, WrapperTask):
|
33 | 34 | """
|
@@ -185,8 +186,8 @@ class PrepareReference(ScheduledExternalProgramTask):
|
185 | 186 | :param taxon: Taxon
|
186 | 187 | :param reference_id: Reference annotation build to use (i.e. ensembl98, hg38_ncbi)
|
187 | 188 | """
|
188 |
| - taxon = luigi.Parameter(default='human') |
189 |
| - reference_id = luigi.Parameter(default='hg38_ncbi') |
| 189 | + taxon = luigi.Parameter() |
| 190 | + reference_id = luigi.Parameter() |
190 | 191 |
|
191 | 192 | cpus = 16
|
192 | 193 | memory = 32
|
@@ -298,8 +299,8 @@ class AlignExperiment(DynamicTaskWithOutputMixin, DynamicWrapperTask):
|
298 | 299 | """
|
299 | 300 | experiment_id = luigi.Parameter()
|
300 | 301 | source = luigi.ChoiceParameter(default='local', choices=['gemma', 'geo', 'sra', 'arrayexpress', 'local'], positional=False)
|
301 |
| - taxon = luigi.Parameter(default='human', positional=False) |
302 |
| - reference_id = luigi.Parameter(default='hg38_ncbi', positional=False) |
| 302 | + taxon = luigi.Parameter(positional=False) |
| 303 | + reference_id = luigi.Parameter(positional=False) |
303 | 304 | scope = luigi.Parameter(default='genes', positional=False)
|
304 | 305 |
|
305 | 306 | def requires(self):
|
|
0 commit comments