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 {
maxErrors = '-1'
// Process-specific resource requirements
withName:makeBowtie2Index {
cpus = { check_max( 1, 'cpus' ) }
memory = { check_max( 10.GB * task.attempt, 'memory' ) }
time = { check_max( 12.h * task.attempt, 'time' ) }
}
withName:bowtie2_end_to_end {
cpus = { check_max( 2, 'cpus' ) }
cpus = { check_max( 4, 'cpus' ) }
memory = { check_max( 4.GB * task.attempt, 'memory' ) }
time = { check_max( 5.h * task.attempt, 'time' ) }
}
withName:bowtie2_on_trimmed_reads {
cpus = { check_max( 2, 'cpus' ) }
cpus = { check_max( 4, 'cpus' ) }
memory = { check_max( 4.GB * task.attempt, 'memory' ) }
time = { check_max( 5.h * task.attempt, 'time' ) }
}
......@@ -59,12 +57,12 @@ process {
memory = { check_max( 4.GB * task.attempt, 'memory' ) }
time = { check_max( 5.h * task.attempt, 'time' ) }
}
withName:build_contact_maps {
withName:build_contact_maps {
cpus = { check_max( 1, 'cpus' ) }
memory = { check_max( 6.GB * task.attempt, 'memory' ) }
time = { check_max( 5.h * task.attempt, 'time' ) }
}
withName:run_ice {
withName:run_ice {
cpus = { check_max( 1, 'cpus' ) }
memory = { check_max( 10.GB * task.attempt, 'memory' ) }
time = { check_max( 5.h * task.attempt, 'time' ) }
......
......@@ -13,8 +13,8 @@ params {
config_profile_description = 'Minimal test dataset to check pipeline function'
// Limit resources so that this can run on Travis
max_cpus = 4
max_memory = 6.GB
max_cpus = 2
max_memory = 4.GB
max_time = 1.h
// Input data
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment