Skip to content

Commit

Permalink
uses self.summarize options too
Browse files Browse the repository at this point in the history
  • Loading branch information
vickydaiya authored Nov 30, 2023
1 parent 0d52f95 commit 01bfdcf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion steps/js/options-util.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ function selectOutputDirectory(obj) {
return obj["directory"] || _find_algorithm(obj) || ".";
}

function getDefaultSummarizeOptions(obj) {
function getSummarizeOptions(obj) {
return {
annotationMethod: _find_algorithm(obj) || "unknown",
...(obj.summarize ?? {})
};
}

0 comments on commit 01bfdcf

Please sign in to comment.