-
Notifications
You must be signed in to change notification settings - Fork 417
New issue
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
Process NFCORE_SAREK:SAREK:GERMLINE_VARIANT_CALLING:RUN_HAPLOTYPECALLER:JOINT_GERMLINE:MERGE_GENOTYPEGVCFS (joint_variant_calling)
terminated with an error exit status (3)
#938
Comments
Hi! To help you could you sent us:
|
Hi, thanks your reply!
|
Could you attach the compelte |
it's this one? |
no it should be in the directory you executed the workflow from. It is a hidden file |
ah sorry, it is, it is just usually not called command.log. |
Is this one? |
next_flow.log |
NOt exactly sure still, but I think this is related to meta map issues. |
Hi we were having the same issue running this pipeline on DNAnexus platform: The root cause for it should be the incorrect path specification in the config both here: sarek/conf/modules/freebayes.config Line 38 in c87f4eb
and here: sarek/conf/modules/haplotypecaller.config Line 69 in c87f4eb
This specification was updated in this commit 4e30625#diff-bf809c928cb10b54d251dec8a140a2d5505150f97175d8d7b51dda9cc57971feR567 We had fixed it manually and it worked on our platform. Please help check if it is indeed the cause and let me know if you have any suggestions. Thanks! |
Would you be able to look at this @maxulysse, @FriederikeHanssen, or @drpatelh? It seems the path corrections @YuxinShi0423 mentions above as a fix should be rather straight-forward. Thank you so much for checking this! |
I support Yuxin Shi's diagnosis. To remove the Let's take a simple example: process MakeFiles {
output: path("*")
script: "touch example.vcf.gz"
}
workflow {
MakeFiles | view { it.getClass() }
} Shows (on my machine):
This workflow {
MakeFiles | view { it - workflow.projectDir }
} With that aside done, what we actually want to do in this case is use the ext.prefix = { meta.num_intervals <= 1 ? "${meta.id}.freebayes" : "${vcf.name.minus("vcf")}.sort" }
// or something like:
ext.prefix = { meta.num_intervals <= 1 ? meta.id + "freebayes" : vcf.name - ".vcf" + ".sort" } |
PR has been merge. |
Thanks @maxulysse @robsyme and @commandlinegirl ! Glad to help :) |
Description of the bug
When i adding paramaters(--tools mutect2,haplotypecaller --joint_germline) to the process, there is an error in "MERGE_GENOTYPEGVCFS (joint_variant_calling)". And i can't found the right place to fix this problem.
Command used and terminal output
Relevant files
No response
System information
No response
The text was updated successfully, but these errors were encountered: