Skip to content
Snippets Groups Projects
indexing.config 486 B
profiles {
  docker {
    docker.temp = 'auto'
    docker.enabled = true
    process {
      $index_fasta {
        container = "bwa:0.7.17"
      }
    }
  }
  sge {
    process{
      $index_fasta {
        beforeScript = "module purge; module load BWA/0.7.17"
        executor = "sge"
        cpus = 1
        memory = "5GB"
        time = "6h"
        queueSize = 1000
        pollInterval = '60sec'
        queue = 'h6-E5-2667v4deb128'
        penv = 'openmp8'
      }
    }
  }
}