diff --git a/CHANGELOG.md b/CHANGELOG.md index 74a568496c..5d03101423 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - [#693](https://github.com/SciLifeLab/Sarek/pull/693) - Qualimap bamQC is now ran after mapping and after recalibration for better QC - [#700](https://github.com/SciLifeLab/Sarek/pull/700) - Update GATK to `4.0.9.0` - [#702](https://github.com/SciLifeLab/Sarek/pull/702) - update FastQC to `0.11.8` +- [#705](https://github.com/SciLifeLab/Sarek/pull/705) - Change `--TMP_DIR` by `--tmp-dir` for GATK `4.0.9.0` BaseRecalibrator ### `Fixed` @@ -34,6 +35,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - [#679](https://github.com/SciLifeLab/Sarek/pull/679) - Add publishDirMode for `germlineVC.nf` - [#700](https://github.com/SciLifeLab/Sarek/pull/700) - Fix [#699](https://github.com/SciLifeLab/Sarek/issues/699) missing DP in the FORMAT column VCFs for MuTect2 - [#702](https://github.com/SciLifeLab/Sarek/pull/702) - Fix [#701](https://github.com/SciLifeLab/Sarek/issues/701) +- [#705](https://github.com/SciLifeLab/Sarek/pull/705) - Fix [#704](https://github.com/SciLifeLab/Sarek/issues/704) ## [2.2.1] - 2018-10-04 diff --git a/main.nf b/main.nf index 23b6e246ac..866221bdfa 100644 --- a/main.nf +++ b/main.nf @@ -352,7 +352,7 @@ process CreateRecalibrationTable { BaseRecalibrator \ --input ${bam} \ --output ${idSample}.recal.table \ - --TMP_DIR /tmp \ + --tmp-dir /tmp \ -R ${genomeFile} \ -L ${intervals} \ --known-sites ${dbsnp} \ @@ -418,8 +418,8 @@ process RecalibrateBam { --input ${bam} \ --output ${idSample}.recal.bam \ -L ${intervals} \ - --create-output-bam-index true \ - --bqsr-recal-file ${recalibrationReport} + --create-output-bam-index true \ + --bqsr-recal-file ${recalibrationReport} """ } // Creating a TSV file to restart from this step