Skip to content
This repository was archived by the owner on Jan 27, 2020. It is now read-only.

Commit ac53e63

Browse files
authored
Merge pull request #705 from MaxUlysse/BaseRecalibrator
replace --TMP_DIR by --tmp-dir in BaseRecalibrator to close #704
2 parents 347d481 + e3cdd2a commit ac53e63

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
2626
- [#693](https://github.com/SciLifeLab/Sarek/pull/693) - Qualimap bamQC is now ran after mapping and after recalibration for better QC
2727
- [#700](https://github.com/SciLifeLab/Sarek/pull/700) - Update GATK to `4.0.9.0`
2828
- [#702](https://github.com/SciLifeLab/Sarek/pull/702) - update FastQC to `0.11.8`
29+
- [#705](https://github.com/SciLifeLab/Sarek/pull/705) - Change `--TMP_DIR` by `--tmp-dir` for GATK `4.0.9.0` BaseRecalibrator
2930

3031
### `Fixed`
3132

@@ -34,6 +35,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
3435
- [#679](https://github.com/SciLifeLab/Sarek/pull/679) - Add publishDirMode for `germlineVC.nf`
3536
- [#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
3637
- [#702](https://github.com/SciLifeLab/Sarek/pull/702) - Fix [#701](https://github.com/SciLifeLab/Sarek/issues/701)
38+
- [#705](https://github.com/SciLifeLab/Sarek/pull/705) - Fix [#704](https://github.com/SciLifeLab/Sarek/issues/704)
3739

3840
## [2.2.1] - 2018-10-04
3941

main.nf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ process CreateRecalibrationTable {
352352
BaseRecalibrator \
353353
--input ${bam} \
354354
--output ${idSample}.recal.table \
355-
--TMP_DIR /tmp \
355+
--tmp-dir /tmp \
356356
-R ${genomeFile} \
357357
-L ${intervals} \
358358
--known-sites ${dbsnp} \
@@ -418,8 +418,8 @@ process RecalibrateBam {
418418
--input ${bam} \
419419
--output ${idSample}.recal.bam \
420420
-L ${intervals} \
421-
--create-output-bam-index true \
422-
--bqsr-recal-file ${recalibrationReport}
421+
--create-output-bam-index true \
422+
--bqsr-recal-file ${recalibrationReport}
423423
"""
424424
}
425425
// Creating a TSV file to restart from this step

0 commit comments

Comments
 (0)