Skip to content

Commit

Permalink
Filter out failed runs from post-facets processing
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhil committed Apr 11, 2023
1 parent 7929448 commit 035dd78
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions cwl/workflow_with_facets.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,11 @@ steps:
hisens_segs.push(inputs.pairs[i].hisens_seg)
};

annotated_mafs = annotated_mafs.filter(function(elem){return elem; });
facets_txts = facets_txts.filter(function(elem){return elem; });
hisens_cncf_txts = hisens_cncf_txts.filter(function(elem){return elem; });
hisens_segs = hisens_segs.filter(function(elem){return elem; });

return {
"annotated_mafs": annotated_mafs,
"facets_txts": facets_txts,
Expand Down

0 comments on commit 035dd78

Please sign in to comment.