Skip to content

Commit

Permalink
https and 443 for bridgedb webservice
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderPico authored and egonw committed Dec 18, 2023
1 parent 315827c commit e956e38
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ public class BridgeRestParameterModel extends AbstractParameterModel implements
{
static final int PARAMETER_NUM = 3;

private Object[] metadata = new Object[] {"http://webservice.bridgedb.org", "80", Collections.emptyList()};
private Object[] values = new Object[] {"http://webservice.bridgedb.org", "80", null};
private Object[] metadata = new Object[] {"https://webservice.bridgedb.org", "443", Collections.emptyList()};
private Object[] values = new Object[] {"https://webservice.bridgedb.org", "443", null};
private String[] labels = new String[] {"Base URL", "Port", "Species"};

/**
Expand Down Expand Up @@ -68,7 +68,7 @@ public String getHelpHtml()
"in advance, and no cross-species mapping is possible. Mapping data is derived from " +
"Ensembl and HMDB." +
"<p><b>maintainer:</b>Gladstone Institute / UCSF and BiGCaT / Maastricht University" +
"<p><b>more info:</b><a href=\"http://webservice.bridgedb.org\">http://webservice.bridgedb.org</a>";
"<p><b>more info:</b><a href=\"https://webservice.bridgedb.org\">https://webservice.bridgedb.org</a>";
}

@Override
Expand Down

0 comments on commit e956e38

Please sign in to comment.