Skip to content

Commit

Permalink
[ALS-0000] Fix aggregate resource
Browse files Browse the repository at this point in the history
- Very confused as to how this was working before
  • Loading branch information
Luke Sikina authored and Luke-Sikina committed Dec 7, 2023
1 parent b050c9f commit 3e4fb95
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,8 @@ public Response querySync(QueryRequest queryRequest) {

Set<String> allowedResultTypes = Set.of(
"COUNT", "CROSS_COUNT", "INFO_COLUMN_LISTING", "OBSERVATION_COUNT",
"OBSERVATION_CROSS_COUNT", "CATEGORICAL_CROSS_COUNT", "CONTINUOUS_CROSS_COUNT"
"OBSERVATION_CROSS_COUNT", "CATEGORICAL_CROSS_COUNT", "CONTINUOUS_CROSS_COUNT",
"VARIANT_COUNT_FOR_QUERY", "AGGREGATE_VCF_EXCERPT", "VCF_EXCERPT"
);

if (!allowedResultTypes.contains(expectedResultType)) {
Expand Down

0 comments on commit 3e4fb95

Please sign in to comment.