mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-22 08:29:54 +00:00
Merge pull request #363 from ramprasadn/feat/hasta_update
Add a profile for stubruns in hasta
This commit is contained in:
commit
49c71e0c28
2 changed files with 28 additions and 5 deletions
|
@ -25,6 +25,16 @@ process {
|
||||||
}
|
}
|
||||||
|
|
||||||
profiles {
|
profiles {
|
||||||
|
stub_prio {
|
||||||
|
params {
|
||||||
|
priority = 'development'
|
||||||
|
clusterOptions = "--qos=low"
|
||||||
|
max_memory = 6.GB
|
||||||
|
max_cpus = 1
|
||||||
|
max_time = 1.h
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
dev_prio {
|
dev_prio {
|
||||||
params {
|
params {
|
||||||
priority = 'development'
|
priority = 'development'
|
||||||
|
|
|
@ -7,6 +7,19 @@ process {
|
||||||
cpus = { check_max( 16 * task.attempt, 'cpus' ) }
|
cpus = { check_max( 16 * task.attempt, 'cpus' ) }
|
||||||
memory = { check_max( 80.GB * task.attempt, 'memory' ) }
|
memory = { check_max( 80.GB * task.attempt, 'memory' ) }
|
||||||
}
|
}
|
||||||
|
withLabel:'sentieon' {
|
||||||
|
beforeScript = { "export PATH=\$PATH:\$SENTIEON_INSTALL_DIR/sentieon-genomics-202112.02/bin" }
|
||||||
|
}
|
||||||
|
withName: 'BCFTOOLS_VIEW' {
|
||||||
|
if (params.genome == 'GRCh37') {
|
||||||
|
ext.args = '--output-type z --apply-filters PASS --exclude "INFO/clinical_genomics_mipAF > 0.40 | INFO/swegenAF > 0.40 | INFO/clingen_ngiAF > 0.40 | INFO/gnomad_svAF > 0.40 "'
|
||||||
|
} else if (params.genome == 'GRCh38') {
|
||||||
|
ext.args = '--output-type z --apply-filters PASS --exclude "INFO/swegen_FRQ > 0.40"'
|
||||||
|
}
|
||||||
|
publishDir = [
|
||||||
|
enabled: false,
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
// Java memory fixes
|
// Java memory fixes
|
||||||
withName:'QUALIMAP_BAMQC' {
|
withName:'QUALIMAP_BAMQC' {
|
||||||
|
|
Loading…
Reference in a new issue