1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-11-21 08:16:03 +00:00

Adds simple NXF config script

This commit is contained in:
Sven Fillinger 2019-03-08 10:36:03 +01:00
parent 4e1cb46dc5
commit 4d43077ddf
2 changed files with 11 additions and 0 deletions

10
configtest.nf Normal file
View file

@ -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")
}

1
nextflow.config Normal file
View file

@ -0,0 +1 @@
includeConfig("nfcore_custom.config")