We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fe6ec5 commit fdda264Copy full SHA for fdda264
toil/python/draft.py
@@ -242,8 +242,8 @@ def run(self, fileStore):
242
fastqc_job_1.addChild(salmon_index_job) # salmon_index_job will run after our root job
243
244
salmon_align_quant_job = SalmonAlignQuantCls(reads1=reads1_file_id, reads2=reads2_file_id, index=index_file_id)
245
- fastqc_job_1.addFollowOn(salmon_align_quant_job)
246
- # we don't do anything our results, but we could
+ fastqc_job_1.addFollowOn(salmon_align_quant_job) # run after this job and all of its children
+ # we don't do anything with our results, but we could
247
salmon_align_quant_file_id = salmon_align_quant_job.rv("quant")
248
249
fileStore.start(fastqc_job_1)
0 commit comments