forked from brwnj/idplot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow.config
49 lines (45 loc) · 1020 Bytes
/
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
// Configurable variables
params {
// the genomic window size for calculating percent ID
window = 500
// where to place the results
outdir = './results'
gard = false
gff = false
nompi = false
cpus = 1
}
process {
time = 72.h
memory = 4.GB
cpus = 1
container = 'brwnj/idplot:v1.1.3'
cache = 'deep'
errorStrategy = 'finish'
withName: gard {
time = 336.h
memory = { 16.GB * task.attempt }
}
}
process.shell = ['/bin/bash', '-euo', 'pipefail']
timeline {
enabled = true
file = "${params.outdir}/logs/timeline.html"
}
report {
enabled = true
file = "${params.outdir}/logs/report.html"
}
trace {
enabled = true
file = "${params.outdir}/logs/trace.txt"
}
manifest {
name = 'brwnj/idplot'
author = 'Joe Brown'
description = "idplot: compare similar sequences to a reference"
version = '1.1.1'
nextflowVersion = '>=0.32.0'
homePage = 'https://github.com/brwnj/idplot'
mainScript = 'main.nf'
}