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

CONTRIBUTING.md

Blame
  • Forked from LBMC / nextflow
    Source project has a limited visibility.
    After you've reviewed these contribution guidelines, you'll be all set to contribute to this project.
    indexing.config 815 B
    profiles {
      docker {
        docker.temp = 'auto'
        docker.enabled = true
        process {
          withName: index_fasta {
            container = "bwa:0.7.17"
            cpus = 4
          }
        }
      }
      singularity {
        singularity.enabled = true
        process {
          withName: index_fasta {
            container = "file://bin/bwa:0.7.17.sif"
            cpus = 4
          }
        }
      }
      psmn {
        process{
          withName: index_fasta {
            beforeScript = "source /usr/share/lmod/lmod/init/bash; module use ~/privatemodules"
            module = "bwa/0.7.17"
            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'
          }
        }
      }
    }