Replies: 1 comment
-
Never mind: resolved with (previous answer from #2887, but I hadn't been using the escape before the dollar sign) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I'm having difficulty with nf/groovy and awk compatibility. I count occurrences of a base in a row of a tsv and add a new column with that count using awk -F 'c' '{print$0, NF-1' OFS="\t" $ {name}.tsv>>${name}_counted.tsv. While this works fine on command line, as a script in nextflow, I get
unknown recognition error type: groovyjarjarantlr4.v4.runtime.LexerNoViableAltException
Script compilation error
{print $0,NF-1}' O
^
1 error
Is there a way around this? I use "print $0" many times.
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions