Skip to content

Commit 87e9a58

Browse files
authored
Merge pull request #418 from microbiomedata/417-could-not-process-output-file-not-found-opaver_web_pathjson
fix the optional opaver_web_path_json file
2 parents 5e43442 + e36d5fa commit 87e9a58

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

data/workflow/WDL/metaG/annotation_output.wdl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ workflow annotation_output {
2929
container = container
3030
}
3131
output{
32-
File protein_size_hist = annotation_vis.opaver_web_path_json
33-
File opaver_web_path_json = annotation_vis.protein_size_hist
32+
File protein_size_hist = annotation_vis.protein_size_hist
33+
File? opaver_web_path_json = annotation_vis.opaver_web_path_json
3434
}
3535
}
3636

@@ -80,7 +80,7 @@ task annotation_vis{
8080

8181
output {
8282
File protein_size_hist = "~{OUTPATH}/~{projectName}.protein_size_histogram.html"
83-
File opaver_web_path_json = "~{OUTPATH}/opaver_web_path.json"
83+
File? opaver_web_path_json = "~{OUTPATH}/opaver_web_path.json"
8484
}
8585

8686
runtime {

0 commit comments

Comments
 (0)