Skip to content
Snippets Groups Projects
Select Git revision
  • 7818935121de9e9fab60234949a0a5437edf0f3e
  • master default protected
  • dev
  • v2.0.0
  • v0.4.0
  • v0.3.0
  • v0.2.9
  • v0.2.8
  • v0.2.7
  • v0.2.6
  • v0.1.0
  • v0.2.5
  • v0.2.4
  • v0.2.3
  • v0.2.2
  • v0.2.1
  • v0.2.0
  • v0.1.2
18 results

adaptor_removal_single.config

Blame
  • adaptor_removal_single.config 1.21 KiB
    profiles {
      docker {
        docker.temp = 'auto'
        docker.enabled = true
        process {
          withName: adaptor_removal {
            container = "cutadapt:2.1"
            cpus = 1
          }
        }
      }
      singularity {
        singularity.enabled = true
        process {
          withName: adaptor_removal {
            container = "file://bin/cutadapt:2.1.img"
            cpus = 1
          }
        }
      }
      psmn {
        process{
          withName: adaptor_removal {
            beforeScript = "source /usr/share/lmod/lmod/init/bash; module use ~/privatemodules"
            module = "cutadapt/2.1"
            executor = "sge"
            clusterOptions = "-cwd -V"
            cpus = 1
            memory = "20GB"
            time = "12h"
            queue = 'monointeldeb128,monointeldeb48,h48-E5-2670deb128,h6-E5-2667v4deb128'
          }
        }
      }
      ccin2p3_conda {
        process{
          withName: adaptor_removal {
            beforeScript = "source /sps/lbmc/common/miniconda3/init.sh"
            conda = "/sps/lbmc/common/miniconda3/envs/cutadapt_2.1"
            scratch = true
            stageInMode = "copy"
            stageOutMode = "rsync"
            executor = "sge"
            clusterOptions = "-P P_lbmc -l os=cl7 -l sps=1 -r n \
            -o ~/logs/ -e ~/logs/"
            cpus = 1
            queue = 'huge'
          }
        }
      }
    }