forked from brwnj/covviz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow.config
56 lines (51 loc) · 1.12 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
54
55
56
// Configurable variables
params {
outdir = './results'
sexchroms = "X,Y"
exclude = "^GL|^hs|^chrEBV\$|M\$|MT\$|^NC|_random\$|Un_|^HLA\\-|_alt\$|hap\\d \$"
zthreshold = 3.5
distancethreshold = 150000
slop = 500000
project = false
}
process {
errorStrategy = { task.exitStatus in [1,143,137,104,134,139] ? 'retry' : 'terminate' }
maxRetries = 3
maxErrors = '-1'
}
profiles {
conda { process.conda = "$baseDir/environment.yml" }
docker {
docker.enabled = true
}
singularity {
singularity.enabled = true
}
none {}
}
process.shell = ['/bin/bash', '-euo', 'pipefail']
timeline {
enabled = true
file = "${params.outdir}/logs/timeline.html"
}
report {
enabled = true
file = "${params.outdir}/logs/report.html"
}
trace {
enabled = true
file = "${params.outdir}/logs/trace.txt"
}
dag {
enabled = true
file = "${params.outdir}/logs/dag.svg"
}
manifest {
name = 'brwnj/covviz'
author = 'Joe Brown'
description = "find large, coverage-based variations on chromosomes"
version = '1.0'
nextflowVersion = '>=0.32.0'
homePage = 'https://github.com/brwnj/covviz'
mainScript = 'main.nf'
}