Skip to content
Snippets Groups Projects
compute_matrix.config 839 B
profiles {
  docker {
    docker.temp = 'auto'
    docker.enabled = true
    process {
      withName: compute_matrix {
        container = "deeptools:3.0.2"
        cpus = 4
      }
    }
  }
  singularity {
    singularity.enabled = true
    process {
      withName: compute_matrix {
        container = "file://bin/deeptools:3.0.2.sif"
        cpus = 4
      }
    }
  }
  psmn {
    process{
      withName: compute_matrix {
        beforeScript = "source /usr/share/lmod/lmod/init/bash; module use ~/privatemodules"
        module = "deeptools/3.0.2"
        executor = "sge"
        clusterOptions = "-m e -cwd -V"
        cpus = 16
        memory = "30GB"
        time = "24h"
        queue = 'E5-2670deb128A,E5-2670deb128B,E5-2670deb128C,E5-2670deb128D,E5-2670deb128E,E5-2670deb128F'
        penv = 'openmp16'
      }
    }
  }
}