diff --git a/configtest.nf b/configtest.nf new file mode 100644 index 0000000..39badec --- /dev/null +++ b/configtest.nf @@ -0,0 +1,10 @@ +#!/usr/bin/env nextflow + +def separator = "-"*40 +print("$separator\n") +print("Parameter scope for config \'${workflow.profile}\'\n") +print("$separator\n") +params.each { + assert it + print("\t$it\n") +} \ No newline at end of file diff --git a/nextflow.config b/nextflow.config new file mode 100644 index 0000000..f1ffe8a --- /dev/null +++ b/nextflow.config @@ -0,0 +1 @@ +includeConfig("nfcore_custom.config") \ No newline at end of file