Skip to content

Commit

Permalink
Decode arguments in genes/variants web service
Browse files Browse the repository at this point in the history
  • Loading branch information
Cristina Yenyxe Gonzalez Garcia committed Aug 5, 2015
1 parent 2243026 commit 113c3ef
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public Response getVariantsByGene(@PathParam("gene") String geneId,

for (String acceptedValue : VariantDBAdaptor.QueryParams.acceptedValues) {
if (uriInfo.getQueryParameters().containsKey(acceptedValue)) {
List<String> values = uriInfo.getQueryParameters().get(acceptedValue);
List<String> values = uriInfo.getQueryParameters(true).get(acceptedValue);
String csv = values.get(0);
for (int i = 1; i < values.size(); i++) {
csv += "," + values.get(i);
Expand Down

0 comments on commit 113c3ef

Please sign in to comment.