Nextflow Error - Unexpected input: '{' #3659
Answered
by
mribeirodantas
selenaajohn
asked this question in
Q&A
-
I'm trying to run my nextflow pipeline, and im keep getting this error. I've tried making changes to my code but cant seem to figure out what the issue is. Ive looked at other discussions and assume I have a sytnax error. Any suggestions on what my error might be would be greatly appreciated! |
Beta Was this translation helpful? Give feedback.
Answered by
mribeirodantas
Feb 17, 2023
Replies: 1 comment
-
This error indeed suggests a syntax error. The issue in your process seems to be in the output block: You should write |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
selenaajohn
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This error indeed suggests a syntax error. The issue in your process seems to be in the output block: You should write
path("*.sam")
instead ofpath(*.sam)
.