-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow.config
57 lines (55 loc) · 1.13 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
profiles {
standard {
executor.name = 'local'
process {
withName: build_mode {
container = 'athbaltzis/spladder:v0.1'
}
withName: test_mode {
cpus = 4
container = 'athbaltzis/spladder:v0.1'
}
withName: run_rmats {
cpus = 4
container = 'athbaltzis/rmats:v0.1'
}
}
docker.enabled = true
trace {
enabled = true
raw = true
fields = 'task_id, hash,native_id,name,status,exit,realtime,%cpu,rss,peak_rss,vmem,peak_vmem,rchar,wchar'
}
}
cluster {
executor {
name = 'crg'
submitRateLimit='5 sec'
}
process {
withName: build_mode {
queue = 'long-sl7,cn-el7'
container = 'athbaltzis/spladder:v0.1'
}
withName: test_mode {
queue = 'long-sl7,cn-el7'
cpus = 4
container = 'athbaltzis/spladder:v0.1'
}
withName: run_rmats {
queue = 'long-sl7,cn-el7'
cpus = 4
container = 'athbaltzis/rmats:v0.1'
}
}
singularity {
enabled = true
autoMounts = true
}
trace {
enabled = true
raw = true
fields = 'task_id, hash,native_id,name,status,exit,realtime,%cpu,rss,peak_rss,vmem,peak_vmem,rchar,wchar'
}
}
}