You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Similar to an error that was fixed in HpoOboFactory on August, the original code
final SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'");
on line 143 of MpoOboFactory.java assumed that the mp.obo file would include milliseconds in its date stamp. mp.obo does not include milliseconds and so we could not parse the mp.obo file.
We changed this line to
final SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'");
Following this, we were able to successfully parse the entire mp.obo file
We have made a corresponding PR
The text was updated successfully, but these errors were encountered:
Similar to an error that was fixed in HpoOboFactory on August, the original code
on line 143 of MpoOboFactory.java assumed that the mp.obo file would include milliseconds in its date stamp. mp.obo does not include milliseconds and so we could not parse the mp.obo file.
We changed this line to
Following this, we were able to successfully parse the entire mp.obo file
We have made a corresponding PR
The text was updated successfully, but these errors were encountered: