-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow.config
83 lines (70 loc) · 2 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
manifest {
homePage = 'https://github.com/iarcbioinfo/bam2peaks-nf'
description = 'Call peaks from Atac-seq or Chip-seq bam files'
mainScript = 'bam2peaks.nf'
}
profiles{
singularity {
singularity.enabled = true
pullTimeout = "200 min"
}
apptainer {
apptainer.enabled = true
pullTimeout = "200 min"
}
docker {
docker.enabled = true
pullTimeout = "200 min"
}
}
process {
withName:bamCoverage{
container = 'docker://quay.io/biocontainers/deeptools:3.5.4--pyhdfd78af_1'
}
withName:qc_TSS2kb {
container = 'docker://quay.io/biocontainers/deeptools:3.5.4--pyhdfd78af_1'
}
withName:fragmentSize{
container = 'docker://quay.io/biocontainers/deeptools:3.5.4--pyhdfd78af_1'
}
withName:multiBamSummary{
container = 'docker://quay.io/biocontainers/deeptools:3.5.4--pyhdfd78af_1'
}
withName:fingerPrint{
container = 'docker://quay.io/biocontainers/deeptools:3.5.4--pyhdfd78af_1'
}
withName:subSamples{
container = 'docker://quay.io/biocontainers/samtools:1.19--h50ea8bc_0'
}
withName:macs2{
container = 'docker://quay.io/biocontainers/macs2:2.2.9.1--py39hf95cd2a_0'
}
withName:idr{
container = 'docker://quay.io/biocontainers/idr:2.0.4.2--py39hec16e2b_10'
}
withName:rmd_report{
//container = 'docker://quay.io/biocontainers/r-tidyverse:1.2.1'
container = 'cgrlab/tidyverse:latest'
}
shell = ['/bin/bash','-o','pipefail']
}
timeline {
enabled = true
overwrite = true
file = "${params.output_folder}/nf-pipeline_info/bam2peaks-nf_timeline.html"
}
report {
enabled = true
overwrite = true
file = "${params.output_folder}/nf-pipeline_info/bam2peaks-nf_report.html"
}
trace {
enabled = true
overwrite = true
file = "${params.output_folder}/nf-pipeline_info/bam2peaks-nf_trace.txt"
}
dag {
enabled = true
overwrite = true
file = "${params.output_folder}/nf-pipeline_info/bam2peaks-nf_dag.html"
}