-
Notifications
You must be signed in to change notification settings - Fork 14
/
main.nf
32 lines (27 loc) · 1.03 KB
/
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
29
30
31
32
#!/usr/bin/env nextflow
/*
========================================================================================
nf-core/scflow
========================================================================================
Github : https://github.com/nf-core/scflow
Website: https://nf-co.re/scflow
Slack : https://nfcore.slack.com/channels/scflow
----------------------------------------------------------------------------------------
*/
nextflow.enable.dsl = 2
/*
========================================================================================
VALIDATE & PRINT PARAMETER SUMMARY
========================================================================================
*/
WorkflowMain.initialise(workflow, params, log)
// Execute a single named workflow
include { SCFLOW } from './workflows/scflow'
workflow {
SCFLOW ()
}
/*
========================================================================================
THE END
========================================================================================
*/