Skip to content

Commit 9718ded

Browse files
committed
ensures the GATK sort before mark duplicates uses the right tmp folder
1 parent 268725c commit 9718ded

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ This issue is described here and the solution is to use Java 8 https://gatk.broa
142142

143143

144144

145-
## Biblipgraphy
145+
## Bibliography
146146

147147
* DePristo M, Banks E, Poplin R, Garimella K, Maguire J, Hartl C, Philippakis A, del Angel G, Rivas MA, Hanna M, McKenna A, Fennell T, Kernytsky A, Sivachenko A, Cibulskis K, Gabriel S, Altshuler D, Daly M. (2011). A framework for variation discovery and genotyping using next-generation DNA sequencing data. Nat Genet, 43:491-498. DOI: 10.1038/ng.806.
148148
* Di Tommaso, P., Chatzou, M., Floden, E. W., Barja, P. P., Palumbo, E., & Notredame, C. (2017). Nextflow enables reproducible computational workflows. Nature Biotechnology, 35(4), 316–319. 10.1038/nbt.3820

modules/02_mark_duplicates.nf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ process MARK_DUPLICATES {
2929
mkdir tmp
3030
3131
gatk SortSam \
32+
--java-options '-Xmx${params.mark_duplicates_memory} -Djava.io.tmpdir=./tmp' \
3233
--INPUT ${bam} \
3334
--OUTPUT ${name}.sorted.bam \
3435
--SORT_ORDER coordinate

nextflow.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ process.shell = ['/bin/bash', '-euo', 'pipefail']
4444

4545
cleanup = true
4646

47-
VERSION = '1.9.0'
47+
VERSION = '1.9.1'
4848
DOI = 'https://zenodo.org/badge/latestdoi/358400957'
4949

5050
manifest {

0 commit comments

Comments
 (0)