-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnextflow.config
More file actions
70 lines (56 loc) · 1.66 KB
/
nextflow.config
File metadata and controls
70 lines (56 loc) · 1.66 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
//Use the params to define reference files, directories, and CLI options
params {
// Reads and references
reads = "/projectnb/bf528/materials/project-2-rnaseq/full_files/*_{R1,R2}.fastq.gz"
/*reads = "/projectnb/bf528/materials/project-2-rnaseq/subsampled_files/*_{R1,R2}.subset.fastq.gz"*/
genome = "/projectnb/bf528/materials/project-2-rnaseq/refs/GRCh38.primary_assembly.genome.fa"
gtf = "/projectnb/bf528/materials/project-2-rnaseq/refs/gencode.v45.primary_assembly.annotation.gtf"
// Directories
outdir = "$projectDir/results/"
// Custom parameters
}
profiles {
conda {
conda.enabled = true
}
singularity {
singularity.enabled = true
singularity.autoMounts = true
}
cluster {
process {
executor = 'sge'
clusterOptions = '-P bf528'
penv = 'omp'
withLabel: process_single {
cpus = 1
}
withLabel: process_low {
cpus = 4
}
withLabel: process_medium {
cpus = 8
clusterOptions = "-P bf528 -l mem_per_core=4G"
}
withLabel: process_high {
cpus = 16
clusterOptions = "-P bf528 -l mem_per_core=8G"
}
}
}
local {
process.executor = 'local'
}
}
//Change the queueSize to enable more parallel jobs (remember the SCC is a shared resource)
//Adjust as necessary
executor {
$sge {
queueSize = 12
}
$local {
cpus = 1
}
}
//Miscellaneous CLI flags
resume = true