-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnextflow.config
More file actions
70 lines (60 loc) · 1.17 KB
/
nextflow.config
File metadata and controls
70 lines (60 loc) · 1.17 KB
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
params {
project = 'jd21'
storage = 'gdata/jd21+scratch/jd21+gdata/xc17+gdata/qq78'
container = '/g/data/xc17/zaka/containers/rico_2026.03.sif'
minimap2 = 'minimap2'
samtools = 'samtools'
bedtools = 'bedtools'
modkit = 'modkit'
species = 'human'
scg = 2
outdir = "${projectDir}/results"
samplesheet = "${projectDir}/samples.tsv"
}
singularity {
enabled = true
autoMounts = true
}
process {
executor = 'pbspro'
project = params.project
storage = params.storage
module = 'singularity'
container = params.container
withName: index {
queue = 'normal'
cpus = 1
memory = '32 GB'
time = '1h'
}
withName: align {
queue = 'normal'
cpus = 40
memory = '128 GB'
time = '48h'
}
withName: mean_cn {
queue = 'normal'
cpus = 4
memory = '16 GB'
time = '24h'
}
withName: mod_pileup {
queue = 'normal'
cpus = 24
memory = '128 GB'
time = '24h'
}
withName: cg_motifs {
queue = 'normal'
cpus = 1
memory = '32 GB'
time = '1h'
}
withName: mod_extract_read {
queue = 'normal'
cpus = 24
memory = '128 GB'
time = '12h'
}
}