forked from bigbio/pgdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.nf
28 lines (23 loc) · 828 Bytes
/
main.nf
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
#!/usr/bin/env nextflow
/*
========================================================================================
nf-core/pgdb
========================================================================================
nf-core/pgdb Proteogenomics database generation
#### Homepage / Documentation
https://github.com/nf-core/pgdb
----------------------------------------------------------------------------------------
*/
nextflow.enable.dsl = 2
include { PGDB } from './workflows/pgdb'
//
// WORKFLOW: Run main nf-core/pgdb analysis pipeline
//
workflow {
PGDB()
}
/*
========================================================================================
THE END
========================================================================================
*/