supply a list via command line parameters #2821
Answered
by
jorgeaguileraseqera
seanrjohnson
asked this question in
Q&A
-
I would like to do something like this: which would have the effect: Is there a way to do that? I don't want to use wildcards, because they might not be files, or if they are files, they might not be named in a regular pattern. Thanks |
Beta Was this translation helpful? Give feedback.
Answered by
jorgeaguileraseqera
Apr 27, 2022
Replies: 1 comment 1 reply
-
As a workaround, you can pass the
main.nf :
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
seanrjohnson
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As a workaround, you can pass the
foo
argument as a String with commas and create a new paramsfooList
splitting it.nextflow main.nf --foo param1,param2,param3
main.nf :