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:
parent
4e1cb46dc5
commit
4d43077ddf
2 changed files with 11 additions and 0 deletions
10
configtest.nf
Normal file
10
configtest.nf
Normal 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
1
nextflow.config
Normal file
|
@ -0,0 +1 @@
|
|||
includeConfig("nfcore_custom.config")
|
Loading…
Reference in a new issue