Skip to content
Snippets Groups Projects
Select Git revision
  • 03f44eeff01896ba2b98d90dd350ab08e68d779e
  • master default protected
  • tp_experimental_biologists
3 results

quantification_paired.config

Blame
  • Forked from LBMC / nextflow
    991 commits behind the upstream repository.
    quantification_paired.config 623 B
    profiles {
      docker {
        docker.temp = 'auto'
        docker.enabled = true
        process {
          withname: mapping_fastq {
            container = "rsem:1.3.0"
          }
        }
      }
      psmn {
        process{
          withname: mapping_fastq {
            beforeScript = "source /usr/share/lmod/lmod/init/bash; module use ~/privatemodules"
            module = "RSEM/1.3.0:SAMtools/1.7"
            executor = "sge"
            clusterOptions = "-m e -cwd -V"
            memory = "30GB"
            time = "24h"
            queue = 'E5-2670deb128A,E5-2670deb128B,E5-2670deb128C,E5-2670deb128D,E5-2670deb128E,E5-2670deb128F'
            penv = 'openmp16'
          }
        }
      }
    }