-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathnextflow.config
More file actions
106 lines (96 loc) · 3.09 KB
/
nextflow.config
File metadata and controls
106 lines (96 loc) · 3.09 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Nextflow config file
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Default config options for all compute environments
----------------------------------------------------------------------------------------
*/
// Global default params, used in configs
params {
email = 'undefined'
flowcell = 'undefined'
ubam_dir = './'
workflow = 'EM-seq'
outputDir = "em-seq_output"
tmp_dir = '/tmp'
fastq_split_lines = 8000000 // approx 4M reads
enable_neb_agg = false
skip_target_bed = false
target_bed_slop = 50
methyl_quality_threshold = 20
single_end = false
// NEB only
path_to_ngs_agg = null
workflow_name_modifier = null
}
includeConfig 'conf/base.config'
includeConfig 'conf/references.config'
profiles {
debug {
dumpHashes = true
process.beforeScript = 'echo $HOSTNAME'
cleanup = false
}
conda {
conda.enabled = true
docker.enabled = false
singularity.enabled = false
podman.enabled = false
shifter.enabled = false
charliecloud.enabled = false
apptainer.enabled = false
}
mamba {
conda.enabled = true
conda.useMamba = true
docker.enabled = false
singularity.enabled = false
podman.enabled = false
shifter.enabled = false
charliecloud.enabled = false
apptainer.enabled = false
}
micromamba {
conda.enabled = true
conda.useMamba = false
conda.useMicromamba = true
docker.enabled = false
singularity.enabled = false
podman.enabled = false
shifter.enabled = false
charliecloud.enabled = false
apptainer.enabled = false
}
test {
includeConfig 'conf/test.config'
conda.enabled = true
conda.useMicromamba = true
conda.cacheDir = "${projectDir}/.conda/envs"
}
}
env {
PYTHONNOUSERSITE = 1
}
executor {
name = 'sge'
queueSize = 10000
jobName = { "${task.process.tokenize(':')[-1]}" }
}
process.shell = ['/bin/bash', '-euo', 'pipefail']
def trace_timestamp = new java.util.Date().format( 'yyyy-MM-dd_HH-mm-ss')
timeline {
enabled = true
file = "${params.outputDir}/pipeline_info/execution_timeline_${trace_timestamp}.html"
}
report {
enabled = true
file = "${params.outputDir}/pipeline_info/execution_report_${trace_timestamp}.html"
}
trace {
enabled = true
file = "${params.outputDir}/pipeline_info/execution_trace_${trace_timestamp}.txt"
}
dag {
enabled = true
file = "${params.outputDir}/pipeline_info/pipeline_dag_${trace_timestamp}.html"
}