Skip to content

Commit

Permalink
Put back call to get the latest HLA DB version
Browse files Browse the repository at this point in the history
  • Loading branch information
mpresteg committed May 28, 2017
1 parent c92aa35 commit d3e901c
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,10 @@ public static AntigenRecognitionSiteLoader getInstance() throws IOException, Inv
instance = new AntigenRecognitionSiteLoader();
hladb = System.getProperty(GLStringConstants.HLADB_PROPERTY);

//instance.init(hladb);
instance.init();
instance.init(hladb);
}
}
catch (IOException e) { // | ParserConfigurationException | SAXException e) {
catch (IOException | ParserConfigurationException | SAXException e) {
LOGGER.info("Couldn't find IMGT file in the correct format for hladb: " + hladb);
instance.init();
System.setProperty(GLStringConstants.HLADB_PROPERTY, "Default");
Expand Down

0 comments on commit d3e901c

Please sign in to comment.