Skip to content
Snippets Groups Projects
indexing.config 1.69 KiB
Newer Older
profiles {
  docker {
    docker.temp = 'auto'
    docker.enabled = true
    process {
      withNamek index_fasta {
        container = "kallisto:0.44.0"
        cpus = 4
      }
    }
  }
  singularity {
    singularity.enabled = true
    process {
      withName: index_fasta {
        container = "file://bin/kallisto:0.44.0.img"
      withName: index_fasta {
        beforeScript = "source /usr/share/lmod/lmod/init/bash; module use ~/privatemodules"
        executor = "sge"
        clusterOptions = "-cwd -V"
        memory = "30GB"
        time = "24h"
        queue = 'E5-2670deb128A,E5-2670deb128B,E5-2670deb128C,E5-2670deb128D,E5-2670deb128E,E5-2670deb128F'
        penv = 'openmp16'
  ccin2p3 {
    process{
      withName: index_fasta {
        beforeScript = "PATH=/sps/lbmc/common/nextflow/src/singularity_modules/kallisto/0.44.0/:/usr/bin:$PATH"
        scratch = true
        stageInMode = "copy"
        stageOutMode = "rsync"
        executor = "sge"
        clusterOptions = "-P P_lbmc -l os=cl7 -l sps=1 -r n"
        cpus = 1
        memory = "10GB"
        time = "24h"
  ccin2p3_conda {
    process{
      withName: index_fasta {
        beforeScript = "source /sps/lbmc/common/miniconda2/init.sh"
        conda = "/sps/lbmc/common/miniconda2/envs/kallisto_0.44.0"
        scratch = true
        stageInMode = "copy"
        stageOutMode = "rsync"
        executor = "sge"
        clusterOptions = "-P P_lbmc -l os=cl7 -l sps=1 -r n"
        cpus = 1
        memory = "10GB"
        time = "24h"