Skip to content
Snippets Groups Projects
mapping_single.config 1.68 KiB
profiles {
  docker {
    docker.temp = 'auto'
    docker.enabled = true
    process {
      withName: mapping_fastq {
        container = "lbmc/bowtie:1.2.2"
        cpus = 4
      }
    }
  }
  singularity {
    singularity.enabled = true
    singularity.cacheDir = "./bin/"
    process {
      withName: mapping_fastq {
        cpus = 4
        container = "lbmc/bowtie:1.2.2"
      }
    }
  }
  psmn{
    process{
      withName: mapping_fastq {
        beforeScript = "./src/conda_psmn.sh"
        conda = "bowtie/1.2.2:samtools_1.7"
        executor = "sge"
        clusterOptions = "-cwd -V"
        cpus = 16
        memory = "30GB"
        time = "24h"
        queue = 'E5-2670deb128A,E5-2670deb128B,E5-2670deb128C,E5-2670deb128D,E5-2670deb128E,E5-2670deb128F'
        penv = 'openmp16'
      }
    }
  }
  ccin2p3_conda {
    process{
      withName: mapping_fastq {
        beforeScript = "source /sps/lbmc/common/miniconda3/init.sh"
        conda = "/sps/lbmc/common/miniconda3/envs/bowtie_1.2.2"
        scratch = true
        stageInMode = "copy"
        stageOutMode = "rsync"
        executor = "sge"
        clusterOptions = "-P P_lbmc -l os=cl7 -l sps=1 -r n\
        "
        cpus = 1
        queue = 'huge'
      }
    }
  }
  ccin2p3 {
    singularity.enabled = true
    singularity.cacheDir = "/sps/lbmc/common/singularity/"
    singularity.runOptions = "--bind /pbs,/sps,/scratch"
    process{
      withName: mapping_fastq {
        container = "lbmc/bowtie:1.2.2"
        scratch = true
        stageInMode = "copy"
        stageOutMode = "rsync"
        executor = "sge"
        clusterOptions = "-P P_lbmc -l os=cl7 -l sps=1 -r n"
        cpus = 1
        queue = 'huge'
      }
    }
  }
}