1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-09-20 21:52:04 +00:00
nf-configs/configtest.nf

10 lines
204 B
Text
Raw Normal View History

2019-03-08 09:36:03 +00:00
#!/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")
}