-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnextflow.config
More file actions
116 lines (103 loc) · 2.44 KB
/
Copy pathnextflow.config
File metadata and controls
116 lines (103 loc) · 2.44 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
params {
input = null
genome = null
annotation_gtf = null
outdir = "results"
trace_timestamp = new java.util.Date().format("yyyy-MM-dd_HH-mm-ss")
rnaseq = false
chromatin = false
motifs = false
}
process {
withLabel: small {
cpus = 2
memory = '8 GB'
}
withLabel: medium {
cpus = 8
memory = '32 GB'
}
withLabel: big {
cpus = 16
memory = '64 GB'
scratch = 'ram-disk'
}
withLabel: huge {
cpus = 32
memory = '256 GB'
scratch = 'ram-disk'
}
}
profiles {
standard {
process.executor = "slurm"
singularity {
enabled = true
autoMounts = true
runOptions = "--bind /data/borth"
}
}
local {
process.executor = "local"
singularity.enabled = true
singularity.autoMounts = true
process {
withLabel: 'small|medium|big|huge' {
cpus = 2
memory = '8 GB'
}
}
}
analysis {
process.executor = "local"
conda.enabled = true
}
test {
singularity.enabled = true
singularity.autoMounts = true
params {
input = "./resources/samplesheet_testdata.csv"
genome = "./data/testdata/genome.fasta.gz"
annotation_gtf = "./data/testdata/genes.gtf.gz"
}
process {
withLabel: 'small|medium|big|huge' {
cpus = 2
memory = '8 GB'
}
}
}
}
report {
enabled = true
file = "results/pipeline_info/report-${params.trace_timestamp}.html"
}
dag {
enabled = true
file = "results/pipeline_info/dag-${params.trace_timestamp}.html"
}
timeline {
enabled = true
file = "results/pipeline_info/timeline-${params.trace_timestamp}.html"
}
trace {
enabled = true
file = "results/pipeline_info/trace-${params.trace_timestamp}.tsv"
}
manifest {
name = "NBorthLab/nf-rnaseq"
contributors = [
[
name: "Markus Riedl",
affiliation: "BOKU University Vienna",
email: "markus.riedl@boku.ac.at",
github: "https://github.com/mriedl93",
contribution: ["author"],
orcid: "0000-0001-6599-4702",
]
]
homePage = "https://github.com/NBorthLab/nf-rnaseq"
defaultBranch = "main"
version = "1.2.1"
nextflowVersion = ">=25.04.4"
}