Skip to content

Commit

Permalink
Update base.config
Browse files Browse the repository at this point in the history
Replace {} with ()
  • Loading branch information
DLBPointon authored Feb 16, 2024
1 parent 0751e4c commit 024216d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conf/base.config
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ process {
withName: '.*:.*:READ_COVERAGE:MINIMAP2_ALIGN' {
cpus = { check_max( 20 * 1, 'cpus' ) }
memory = { check_max( 50.GB * task.attempt, 'memory' ) }
time = { check_max( 1.h * ${reference.size() < 1e9 ? 10 : reference.size() < 2.5e9 ? 30 : 300}, 'time' ) }
time = { check_max( 1.h * (reference.size() < 1e9 ? 10 : reference.size() < 2.5e9 ? 30 : 300), 'time' ) }
//time = { check_max( 30.h * task.attempt, 'time' ) }
}

Expand Down

0 comments on commit 024216d

Please sign in to comment.