Skip to content
Snippets Groups Projects
Unverified Commit 4ffc8603 authored by Nicolas Servant's avatar Nicolas Servant Committed by GitHub
Browse files

Merge pull request #6 from nservant/dev

update config for test
parents 1925dc72 63304947
No related branches found
No related tags found
No related merge requests found
...@@ -22,20 +22,18 @@ process { ...@@ -22,20 +22,18 @@ process {
maxErrors = '-1' maxErrors = '-1'
// Process-specific resource requirements // Process-specific resource requirements
withName:makeBowtie2Index { withName:makeBowtie2Index {
cpus = { check_max( 1, 'cpus' ) } cpus = { check_max( 1, 'cpus' ) }
memory = { check_max( 10.GB * task.attempt, 'memory' ) } memory = { check_max( 10.GB * task.attempt, 'memory' ) }
time = { check_max( 12.h * task.attempt, 'time' ) } time = { check_max( 12.h * task.attempt, 'time' ) }
} }
withName:bowtie2_end_to_end { withName:bowtie2_end_to_end {
cpus = { check_max( 2, 'cpus' ) } cpus = { check_max( 4, 'cpus' ) }
memory = { check_max( 4.GB * task.attempt, 'memory' ) } memory = { check_max( 4.GB * task.attempt, 'memory' ) }
time = { check_max( 5.h * task.attempt, 'time' ) } time = { check_max( 5.h * task.attempt, 'time' ) }
} }
withName:bowtie2_on_trimmed_reads { withName:bowtie2_on_trimmed_reads {
cpus = { check_max( 2, 'cpus' ) } cpus = { check_max( 4, 'cpus' ) }
memory = { check_max( 4.GB * task.attempt, 'memory' ) } memory = { check_max( 4.GB * task.attempt, 'memory' ) }
time = { check_max( 5.h * task.attempt, 'time' ) } time = { check_max( 5.h * task.attempt, 'time' ) }
} }
...@@ -59,12 +57,12 @@ process { ...@@ -59,12 +57,12 @@ process {
memory = { check_max( 4.GB * task.attempt, 'memory' ) } memory = { check_max( 4.GB * task.attempt, 'memory' ) }
time = { check_max( 5.h * task.attempt, 'time' ) } time = { check_max( 5.h * task.attempt, 'time' ) }
} }
withName:build_contact_maps { withName:build_contact_maps {
cpus = { check_max( 1, 'cpus' ) } cpus = { check_max( 1, 'cpus' ) }
memory = { check_max( 6.GB * task.attempt, 'memory' ) } memory = { check_max( 6.GB * task.attempt, 'memory' ) }
time = { check_max( 5.h * task.attempt, 'time' ) } time = { check_max( 5.h * task.attempt, 'time' ) }
} }
withName:run_ice { withName:run_ice {
cpus = { check_max( 1, 'cpus' ) } cpus = { check_max( 1, 'cpus' ) }
memory = { check_max( 10.GB * task.attempt, 'memory' ) } memory = { check_max( 10.GB * task.attempt, 'memory' ) }
time = { check_max( 5.h * task.attempt, 'time' ) } time = { check_max( 5.h * task.attempt, 'time' ) }
......
...@@ -13,8 +13,8 @@ params { ...@@ -13,8 +13,8 @@ params {
config_profile_description = 'Minimal test dataset to check pipeline function' config_profile_description = 'Minimal test dataset to check pipeline function'
// Limit resources so that this can run on Travis // Limit resources so that this can run on Travis
max_cpus = 4 max_cpus = 2
max_memory = 6.GB max_memory = 4.GB
max_time = 1.h max_time = 1.h
// Input data // Input data
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment