-
Notifications
You must be signed in to change notification settings - Fork 596
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
bugfix for type of some output files in cnv_somatic_pair_workflow.wdl #6735
Conversation
I've encountered and reported a similar problem for cromwell. I think the changes proposed here won't result in correct localization/delocalization, but I'm not sure what the correct solution is for optional outputs where no file name is provided. See this cromwell jira ticket. |
I'm not sure external people can see that jira at all. |
Hello, Just want to clarify that the Point 2 change I made is about "File?" in output and it works with cromwell v51. If the task generated that file was not run (such as skipped by I think the ticket you mentioned is talking about "String?", which is different that "File?" in output? Thanks! |
@mwalker174 Can you review this one when you get a chance? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you @slzhao this looks good. Please see my one comment below.
# File? oncotated_called_file_tumor = select_first([CNVOncotatorWorkflow.oncotated_called_file, "null"]) | ||
# File? oncotated_called_gene_list_file_tumor = select_first([CNVOncotatorWorkflow.oncotated_called_gene_list_file, "null"]) | ||
# File? funcotated_called_file_tumor = select_first([CNVFuncotateSegmentsWorkflow.funcotated_seg_simple_tsv, "null"]) | ||
# File? funcotated_called_gene_list_file_tumor = select_first([CNVFuncotateSegmentsWorkflow.funcotated_gene_list_tsv, "null"]) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can delete these commented lines
Thanks for catching these, @slzhao! |
@slzhao do you have time to make that one small edit? After that, this is good to merge. |
@slzhao item 1 in your original post randomly came up in the OpenWDL Slack, which ultimately caused me to realize that this PR is still open. Would you like to remove the commented lines and merge? If we don't hear back from you, I'll merge this and issue a separate PR to remove the commented lines. |
Hello,
I made two changes in output files of cnv_somatic_pair_workflow.wdl to fix bugs: