-
Notifications
You must be signed in to change notification settings - Fork 1
/
nextflow.config
75 lines (64 loc) · 1.73 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
/*
vim: syntax=groovy
-*- mode: groovy;-*-
* -------------------------------------------------
* NF-CAGEseq Nextflow config file
* -------------------------------------------------
* Default config options for all environments.
* Cluster-specific config options should be saved
* in the conf folder and imported under a profile
* name here.
*/
// Variable to specify the docker / singularity image tag to use
// Picks up on use of -r 1.3 in nextflow command
wf_container = { "kevinmenden/tf-activity:latest" }
// Global default params, used in configs
params {
// Pipeline version
version = '0.1.0dev'
outdir = './results'
igenomes_base = "./iGenomes"
clusterOptions = false
// Docker container
container = 'kevinmenden/tf-activity:latest'
}
profiles {
standard
{
includeConfig 'conf/base.config'
}
docker
{
includeConfig 'conf/base.config'
includeConfig 'conf/docker.config'
}
human
{
includeConfig 'conf/base.config'
includeConfig 'conf/docker.config'
includeConfig 'conf/human.config'
}
}
// Capture exit codes from upstream processes when piping
process.shell = ['/bin/bash', '-euo', 'pipefail']
timeline {
enabled = true
file = "${params.outdir}/pipeline_info/NF-CAGEseq_timeline.html"
}
report {
enabled = true
file = "${params.outdir}/pipeline_info/NF-CAGEseq_report.html"
}
trace {
enabled = true
file = "${params.outdir}/pipeline_info/NF-CAGEseq_trace.txt"
}
dag {
enabled = true
file = "${params.outdir}/pipeline_info/NF-CAGEseq_dag.html"
}
manifest {
homePage = 'https://github.com/KevinMenden/tf-activity'
description = 'Pipeline for active TF identification from CAGE-seq peaks'
mainScript = 'main.nf'
}