-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnextflow.config
84 lines (72 loc) · 2.08 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
manifest {
name = 'AliNe'
author = 'Jacques Dainat'
homePage = 'https://github.com/Juke34/AliNe'
description = 'Nextflow alignment pipeline'
mainScript = 'aline.nf'
nextflowVersion = '>=22.04.0'
version = '0.1'
}
// default parameters
params {
// to store general information about pipeline execution
pipeline_report="pipeline_report"
monochrome_logs = false
}
profiles {
itrop {
executor {
name = 'slurm'
}
process {
scratch = '$SNIC_TMP'
}
includeConfig "$baseDir/config/hpc.config"
singularity.enabled = true
// singularity.envWhitelist = '' // Comma separated list of environment variable names to be included in the container environment.
includeConfig "$baseDir/config/softwares.config"
scratch = '/scratch'
}
debug { process.beforeScript = 'env' }
docker {
docker.enabled = true
includeConfig "$baseDir/config/softwares.config"
docker.runOptions='-u "$( id -u ):$( id -g )"'
}
singularity {
singularity.enabled = true
includeConfig "$baseDir/config/softwares.config"
}
local {
includeConfig "$baseDir/config/ressources/local.config"
}
test_illumina_paired {
includeConfig "$baseDir/profiles/test_illumina_paired.config"
}
test_illumina_single {
includeConfig "$baseDir/profiles/test_illumina_single.config"
}
test_ont {
includeConfig "$baseDir/profiles/test_ont.config"
}
test_pacbio {
includeConfig "$baseDir/profiles/test_pacbio.config"
}
}
resume = true
timeline {
enabled = true
file = "${params.pipeline_report}/execution_timeline_${new Date().format('yyyyMMddHHmmss')}.html"
}
report {
enabled = true
file = "${params.pipeline_report}/execution_report_${new Date().format('yyyyMMddHHmmss')}.html"
}
trace {
enabled = true
file = "${params.pipeline_report}/execution_trace_${new Date().format('yyyyMMddHHmmss')}.txt"
}
dag {
enabled = true
file = "${params.pipeline_report}/pipeline_dag.svg"
}