-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow.config
90 lines (79 loc) · 1.7 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
85
86
87
88
89
90
manifest {
author = "Jimmy Liu"
version = "1.0"
name = "isPCR"
homePage = 'https://github.com/jimmyliu1326/isPCR'
description = 'Rapid local alignment search by in-silico PCR'
mainScript = "main.nf"
nextflowVersion = ">=21.0.0"
manifest.defaultBranch = "main"
}
params {
input = null
outdir = null
primer = null
max_length = 1000
multiplex = false
probe_min_tm = 40
primer_min_tm = 40
input_format = 'fasta'
help = false
version = false
account = null
}
process {
withLabel:process_low {
cpus = { 4 }
memory = { 4.GB }
time = { 2.h }
}
withLabel:process_medium {
cpus = { 16 }
memory = { 16.GB }
time = { 12.h }
}
withLabel:process_high {
cpus = { 32 }
memory = { 32.GB }
time = { 24.h }
}
}
// profile definitions
profiles {
standard {
includeConfig 'conf/docker.config'
}
docker {
includeConfig 'conf/docker.config'
}
slurm {
includeConfig 'conf/slurm.config'
}
singularity {
includeConfig 'conf/singularity.config'
}
test {
includeConfig 'conf/test.config'
}
}
// Trace pipeline execution metrics
timeline {
enabled = true
file = "${params.outdir}/pipeline_info/execution_timeline.html"
overwrite = true
}
report {
enabled = true
file = "${params.outdir}/pipeline_info/execution_report.html"
overwrite = true
}
trace {
enabled = true
file = "${params.outdir}/pipeline_info/execution_trace.txt"
overwrite = true
}
dag {
enabled = true
file = "${params.outdir}/pipeline_info/pipeline_dag.html"
overwrite = true
}