Skip to content
Snippets Groups Projects
Select Git revision
  • 231fd9e6a361a8095f07f32ce8c42b69f9409f8f
  • master default protected
  • mshamjal-master-patch-07440
  • mshamjal-master-patch-20634
  • dev
  • 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
19 results

tests.sh

Blame
  • Forked from LBMC / nextflow
    Source project has a limited visibility.
    plot_profile.config 1.43 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{
        singularity.enabled = true
        singularity.cacheDir = "/.singularity_psmn/"
        singularity.runOptions = "--bind /Xnfs,/scratch"
        process{
          withName: plot_profile {
            container = "lbmc/deeptools:3.0.2"
            executor = "sge"
            clusterOptions = "-cwd -V"
            cpus = 32
            memory = "30GB"
            time = "24h"
            queue = "CLG6242deb384A,CLG6242deb384C,CLG5218deb192A,CLG5218deb192B,CLG5218deb192C,CLG5218deb192D,SLG5118deb96,SLG6142deb384A,SLG6142deb384B,SLG6142deb384C,SLG6142deb384D"
            penv = "openmp32"
          }
        }
      }
      ccin2p3 {
        singularity.enabled = true
        singularity.cacheDir = "$baseDir/.singularity_in2p3/"
        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"
          }
        }
      }
    }