Skip to content

Commit

Permalink
Fixed wrong parameter order in AlignedFeatureController.getDeNovoStru…
Browse files Browse the repository at this point in the history
…ctureCandidatesByFormula
  • Loading branch information
me62did committed Mar 7, 2024
1 parent af3e1fa commit f3d2aef
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ public List<StructureCandidateScored> getDeNovoStructureCandidatesByFormula(
@PathVariable String projectId, @PathVariable String alignedFeatureId, @PathVariable String formulaId,
@RequestParam(defaultValue = "") EnumSet<StructureCandidateScored.OptField> optFields
) {
return getDeNovoStructureCandidatesByFormulaPaged(projectId, formulaId, alignedFeatureId, globalConfig.unpaged(), optFields)
return getDeNovoStructureCandidatesByFormulaPaged(projectId, alignedFeatureId, formulaId, globalConfig.unpaged(), optFields)
.stream().toList();
}

Expand Down

0 comments on commit f3d2aef

Please sign in to comment.