-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow.config
52 lines (43 loc) · 964 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
50
51
52
profiles {
lewis {
process {
executor = 'slurm'
queue = 'BioCompute'
clusterOptions = '--account=warrenlab'
conda = '/storage/hpc/group/warrenlab/users/esrbhb/mambaforge/envs/vg'
}
conda.enabled = true
}
coolmuc {
process {
executor = 'slurm'
queue = 'biohpc_gen_normal'
}
}
conda {
process.conda = "$baseDir/conda.yml"
conda.enabled = true
}
}
process {
memory = '50 GB'
time = '2h'
withName: "SNARLS|PACK|CALL" {
cpus = 12
}
withName: "GIRAFFE" {
cpus = 12
time = '2d'
}
withName: "MERGE_VCFS" {
publishDir = [path: "out/", mode: "copy"]
time = '2d'
}
}
report.enabled = true
manifest {
defaultBranch = 'main'
homePage = 'https://github.com/WarrenLab/giraffe-svs-nf'
author = 'Edward S. Rice'
version = '0.0.1'
}