Replies: 1 comment 13 replies
-
This happens because you used single quotes |
Beta Was this translation helpful? Give feedback.
13 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.
Uh oh!
There was an error while loading. Please reload this page.
-
I've been attempting to adapt this example: https://www.nextflow.io/docs/latest/process.html#output-type-env to create a process that counts the number of variants in a VCF and am running into a couple of issues. Below is my demo pipeline:
When I hardcode the VCF in the process this works, however when I try to pass in a tuple containing a VCF as I do above I am getting
Here are the contents of
.command.sh
:I'm quite confused because I've written pipelines in the past that pass in files in the exact same way and they work without issues.
The second issue I'm having is that I can't seem to get the output from
count_variants
into a Nextflow variable. I went back to hardcoding the VCF and thought something along the lines ofwould work but it simply prints
Any help on either of these issues would be greatly appreciated.
Beta Was this translation helpful? Give feedback.
All reactions