From 4d43077ddf7dccf7b17650d58eefc28fdfcdf596 Mon Sep 17 00:00:00 2001 From: Sven Fillinger Date: Fri, 8 Mar 2019 10:36:03 +0100 Subject: [PATCH] Adds simple NXF config script --- configtest.nf | 10 ++++++++++ nextflow.config | 1 + 2 files changed, 11 insertions(+) create mode 100644 configtest.nf create mode 100644 nextflow.config 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