Skip to content
Snippets Groups Projects
Select Git revision
  • 8aee48b98cbafdecd62fa5a2652d012df0483a6e
  • master default protected
  • dev
  • 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
13 results

tests.sh

Blame
  • Forked from LBMC / nextflow
    Source project has a limited visibility.
    plot_profile.config 1.30 KiB
    profiles {
      docker {
        docker.temp = 'auto'
        docker.enabled = true
        process {
          withName: plot_profile {
            container = "lbmc/deeptools:3.0.2"
            cpus = 4
          }
        }
      }
      singularity {
        singularity.enabled = true
        singularity.cacheDir = "./bin/"
        process {
          withName: compute_matrix {
            container = "lbmc/deeptools:3.0.2"
            cpus = 4
          }
        }
      }
      psmn{
        process{
          withName: plot_profile {
            beforeScript = "source $baseDir/.conda_psmn.sh"
            conda = "$baseDir/.conda_envs/deeptools_3.0.2"
            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 {
        singularity.enabled = true
        singularity.cacheDir = "/sps/lbmc/common/singularity/"
        singularity.runOptions = "--bind /pbs,/sps,/scratch"
        process{
          withName: plot_profile {
            container = "lbmc/deeptools:3.0.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'
          }
        }
      }
    }