-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow.config
48 lines (39 loc) · 1.24 KB
/
nextflow.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
vjmarteau/scrnaseq-calprotectin-organoids Nextflow config file
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
manifest {
name = 'vjmarteau/scrnaseq-calprotectin-organoids'
author = 'Valentin Marteau'
description = 'nf-pipeline for data analysis of scRNAseq organoids treated with calprotectin'
nextflowVersion = '>=22.04'
version = 'v0.1'
}
// Global default params, used in configs
params {
// Choose between "symlink" - absolute path, "rellink" -relative path, "link " -hard link, "copy"
publish_dir_mode = "copy"
}
includeConfig 'conf/modules.config'
conda {
useMamba = true
enabled = true
}
singularity {
enabled = true
runOptions = "--no-home --env NUMBA_CACHE_DIR=/tmp/\$USER/numba_cache_dir" // "--no-home" prevents using packages stored in local home dir
autoMounts = true
}
profiles {
standard {
process.executor = 'local'
}
cluster {
process.executor = 'sge'
process.penv = 'smp'
process.queueSize = 600
//process.clusterOptions = { '-V -S /bin/bash -q all.q' }
process.clusterOptions = { '-V -S /bin/bash -q all.q@apollo-0[0-9]' }
}
}