We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
-stub flag breaks workflow with error message "Cannot invoke method clone() on null object"
-stub
test.nf:
process mockup { output: file "*.vcf" script: """ touch "real.vcf" """ stub: """ touch "stub.vcf" """ } process continue_run { input: file infile """ echo success """ } workflow { mockup | continue_run }
nextflow run test.nf -stub
ERROR ~ Error executing process > 'continue_run' Caused by: Cannot invoke method clone() on null object -- Check '.nextflow.log' file for details
(Add any other context about the problem here)
The text was updated successfully, but these errors were encountered:
I am experiencing the same issue but without -stub.
Sorry, something went wrong.
@jorgee can you look into this one, might be a regression from the recent changes we made
jorgee
Successfully merging a pull request may close this issue.
Bug report
-stub
flag breaks workflow with error message "Cannot invoke method clone() on null object"Expected behavior and actual behavior
-stub
flag, pipeline completes successfully.-stub
flag, got error "Cannot invoke method clone() on null object"Steps to reproduce the problem
test.nf:
Program output
Environment
Additional context
(Add any other context about the problem here)
The text was updated successfully, but these errors were encountered: