Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions org.bridgedb.gui/src/org/bridgedb/gui/PgdbParameterModel.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public PgdbParameterModel()
@Override
public String getConnectionString()
{
return "idmapper-pgdb:" + getFile(0).getAbsolutePath();
return "idmapper-pgdb:" + getFile(0).toURI().toString();
}

@Override
Expand All @@ -43,7 +43,7 @@ public String getName()
public String getHelpHtml()
{
return
"<html><h1>BridgeDerby database" +
Comment thread
traybug23 marked this conversation as resolved.
"<html><h1>BridgeDerby database"
"<p>BridgeDerby are databases that consist of a single file which you can download " +
"to your computer for fast access. Once downloaded, BridgeDerby databases are much" +
"faster than a webservice." +
Expand Down
Loading