-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathnextflow.config
72 lines (62 loc) · 1.39 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
process {
withName: image_to_zarr {
memory = 40.GB
cpus = 4
}
withName: ome_zarr_metadata {
memory = 2.GB
cpus = 1
}
withName: route_file {
// max between 4GB or size of sparce matrix
memory = 64.GB
cpus = 1
}
withName: Build_config {
memory = 2.GB
cpus = 1
}
withName: Generate_image {
memory = 40.GB
cpus = 4
}
}
profiles {
conda {
conda.enabled = true
process {
conda = "$projectDir/envs/environment.yaml"
withLabel: build_config {
conda = "$projectDir/envs/build_config/environment.yaml"
}
}
}
docker {
docker.enabled = true
process {
container = 'haniffalab/webatlas-pipeline:0.5.3'
withLabel: build_config {
container = 'haniffalab/webatlas-pipeline-build-config:0.5.2'
}
}
}
singularity {
singularity.enabled = true
singularity.autoMounts = true
process {
container = 'haniffalab/webatlas-pipeline:0.5.3'
withLabel: build_config {
container = 'haniffalab/webatlas-pipeline-build-config:0.5.3'
}
}
}
sanger {
executor {
name = 'lsf'
perJobMemLimit = true
}
process.executor = 'lsf'
process.queue = 'normal'
singularity.runOptions = '--bind $(mktemp -d /tmp/webatlas.XXXXX):/tmp --env NUMBA_CACHE_DIR=/tmp'
}
}