Skip to content

Commit 433a00d

Browse files
authored
Merge branch 'master' into dev
2 parents a47df9c + a1b1260 commit 433a00d

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

main.nf

+5-3
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,21 @@
22

33
nextflow.enable.dsl = 2
44

5-
include { select } from './workflows/databases/select.nf'
5+
6+
include { genes } from './genes'
67
include { import_data } from './import-data'
78
include { precompute } from './precompute'
89
include { analyze } from './analyze'
910
include { export } from './export'
1011

1112
workflow {
12-
select \
13-
| import_data \
13+
import_data \
1414
| ifEmpty('no import') \
1515
| analyze \
1616
| ifEmpty('no analysis') \
1717
| precompute \
1818
| ifEmpty('no precompute') \
19+
| genes \
20+
| ifEmpty('no genes') \
1921
| export
2022
}

0 commit comments

Comments
 (0)