-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtelomeric_ends.conf
50 lines (46 loc) · 1.13 KB
/
telomeric_ends.conf
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
singularity.enabled = true
singularity.autoMounts = true
executor.perJobMemLimit = true
condaEnv="/lustre/scratch123/tol/teams/blaxter/projects/tol-nemotodes/sw/miniconda3/envs/btk_env"
rCondaEnv="/lustre/scratch123/tol/teams/blaxter/projects/tol-nemotodes/sw/miniconda3/envs/nemaChromQC"
memeContainer="$HOME/memesuite_latest.sif"
process{
memory = '3 GB'
withLabel: big_parallelizable {
errorStrategy = { task.attempt == 1 ? 'retry' : 'ignore'}
maxRetries = 2
queue = { task.attempt > 1 ? 'long' : 'normal' }
}
withName: map_reads {
cpus = 12
memory = '10 GB'
}
withName: hifiasm {
cpus = 4
memory = '10 GB'
errorStrategy = 'ignore'
}
withName: flye {
cpus = 4
memory = '10 GB'
errorStrategy = 'ignore'
}
withName: "fimo|meme" {
container = "$memeContainer"
}
withLabel: btk {
conda = "$condaEnv"
}
withLabel: r {
conda = "$rCondaEnv"
}
}
profiles {
standard {
process.executor = 'local'
}
farm {
process.executor = 'lsf'
executor.perJobMemLimit = true
}
}