This repository has been archived by the owner on Oct 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow.config
105 lines (80 loc) · 2.53 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
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
includeConfig 'configs/schedulers.config'
process {
withLabel:process_idx {
cpus = { 6 }
memory = { 30.GB }
}
withLabel:process_quant_full {
cpus = { 6 }
memory = { 30.GB }
}
withLabel:process_quant_features {
cpus = { 4 }
memory = { 4.GB }
}
withLabel:process_parse_exon_intron {
cpus = { 1 }
memory = { 16.GB }
}
withLabel:process_mtx {
cpus = { 1 }
memory = { 16.GB }
}
withLabel:process_alevinqc {
cpus = { 1 }
memory = { 12.GB }
}
}
profiles {
conda {
process.conda = "${baseDir}/environment.yml"
conda.enabled = true
}
docker {
docker.enabled = true
}
singularity {
singularity.enabled = true
singularity.autoMounts = true
}
test {
params.genome = "$baseDir/test/example_genome.fa.gz"
params.gtf = "$baseDir/test/example_annot.gtf.gz"
params.quant_args = '--forceCells 1000'
params.quant_args_fb = '--forceCells 1000'
params.rrna = "Mt_rRNA" // just to satisfy the tests
params.translate_list = "$baseDir/test/translate_list.txt.gz"
params.translate_barcodes = true
//params.tgmap = "$baseDir/test/idx_test/annotation.expanded.tx2gene.tsv"
//params.rrnagenes = "$baseDir/test/idx_test/annotation.rRNA.txt"
//params.mtrnagenes = "$baseDir/test/idx_test/annotation.mtRNA.txt"
//params.expanded_features = "$baseDir/test/idx_test/annotation.expanded.features.tsv.gz"
//params.gene2type = "$baseDir/test/idx_test/annotation.gene2type.txt"
process {
withLabel:process_idx {
cpus = { 1 }
memory = { 1.GB }
}
withLabel:process_quant_full {
cpus = { 1 }
memory = { 1.GB }
}
withLabel:process_quant_features {
cpus = { 1 }
memory = { 1.GB }
}
withLabel:process_parse_exon_intron {
cpus = { 1 }
memory = { 1.GB }
}
withLabel:process_mtx {
cpus = { 1 }
memory = { 1.GB }
}
withLabel:process_alevinqc {
cpus = { 1 }
memory = { 1.GB }
}
}
}
}