forked from FredHutch/nf-ngscheckmate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow.config
56 lines (46 loc) · 1.28 KB
/
nextflow.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
params {
ref = "https://github.com/parklab/NGSCheckMate/raw/master/SNP/SNP.pt"
outdir = false
paired_fastq_samplesheet = false
paired_fastq_path = false
help = false
cpus = 4
memory_gb = 30
container__ngscheckmate = "quay.io/biocontainers/ngscheckmate:1.0.0--py27r41hdfd78af_3"
tracedir = "${params.outdir}/pipeline_info"
}
profiles {
kutral {
singularity.enabled = true
singularity.autoMounts = true
singularity.cacheDir = 'work/singularity'
singularity.runOptions = ' --bind /mnt/beegfs/labs/ '
docker.enabled = false
podman.enabled = false
shifter.enabled = false
charliecloud.enabled = false
executor.name = 'slurm'
executor.queue = 'uohhm'
executor.queueSize = 100
}
}
process {
errorStrategy = 'retry'
}
def trace_timestamp = new java.util.Date().format('yyyy-MM-dd_HH-mm-ss')
timeline {
enabled = true
file = "${params.tracedir}/execution_timeline_${trace_timestamp}.html"
}
report {
enabled = true
file = "${params.tracedir}/execution_report_${trace_timestamp}.html"
}
trace {
enabled = true
file = "${params.tracedir}/execution_trace_${trace_timestamp}.txt"
}
dag {
enabled = true
file = "${params.tracedir}/pipeline_dag_${trace_timestamp}.svg"
}