-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnextflow.config
More file actions
38 lines (30 loc) · 760 Bytes
/
nextflow.config
File metadata and controls
38 lines (30 loc) · 760 Bytes
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
profiles {
standard { includeConfig './configs/local.config'}
slurm { includeConfig './configs/slurm.config'}
docker { docker.enabled = false
// process.container = 'gspracklin/docker-conda:latest'
}
singularity {
singularity.enabled = false
singularity.autoMounts = false
}
}
manifest {
homePage = 'https://github.com/gspracklin/puddingstone-nf'
author = 'George Spracklin'
mainScript = 'main.nf'
description = 'nextflow bash for Hi-C analysis'
version = '1.0.0'
}
timeline {
enabled = true
file = "./pipeline_info/timeline.html"
}
trace {
enabled = true
file = "./pipeline_info/trace.txt"
}
report {
enabled = true
file = "./pipeline_info/report.html"
}