mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-23 16:49:55 +00:00
a56b88e264
Co-authored-by: James A. Fellows Yates <jfy133@gmail.com>
52 lines
1.1 KiB
Text
52 lines
1.1 KiB
Text
params {
|
|
config_profile_contact = "Alexandre Gilardet (@alexandregilardet )" '
|
|
config_profile_description = "Profiles for ressources fitting low & high coverage data generated at the Crick (screening & production respectively). Option for higher coverage external data."
|
|
}
|
|
|
|
profiles {
|
|
screening {
|
|
process {
|
|
withName:bwa {
|
|
cpus = 12
|
|
memory = '15 GB'
|
|
time = '6h'
|
|
}
|
|
}
|
|
}
|
|
production {
|
|
process {
|
|
withName:adapter_removal {
|
|
time = '3d'
|
|
}
|
|
withName:fastp {
|
|
time = '8h'
|
|
}
|
|
withName:bwa {
|
|
cpus = 8
|
|
memory = '56 GB'
|
|
time = '3d'
|
|
}
|
|
withName:samtools_filter {
|
|
time = '3d'
|
|
}
|
|
withName:dedup {
|
|
cpus = 6
|
|
memory = '20 GB'
|
|
time = '3d'
|
|
}
|
|
withName:damageprofiler {
|
|
memory = '64 GB'
|
|
time = '3d'
|
|
errorStrategy = { task.exitStatus in [1,143,137,104,134,139] ? 'retry' : 'finish' }
|
|
}
|
|
}
|
|
}
|
|
external {
|
|
process {
|
|
withName:samtools_filter {
|
|
cpus = 12
|
|
memory = '72 GB'
|
|
}
|
|
}
|
|
}
|
|
}
|