-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmain.nf
More file actions
29 lines (22 loc) · 948 Bytes
/
main.nf
File metadata and controls
29 lines (22 loc) · 948 Bytes
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
#!/usr/bin/env nextflow
/*
========================================================================================
NF Modules Test Wrapper
========================================================================================
#### Homepage / Documentation
https://github.com/luslab/nf-modules
----------------------------------------------------------------------------------------
*/
// Define DSL2
nextflow.enable.dsl=2
// Log
log.info ("Starting tests for nf-modules...")
include { build_debug_param_summary; luslab_header} from './tools/luslab_util/main.nf'
include {assert_resource_allocation_models} from './workflows/resource_allocation/main.nf'
//------------------------------------------------------------------------------------
log.info luslab_header()
log.info build_debug_param_summary()
workflow {
// Run the test script on resource allocation models
assert_resource_allocation_models()
}