[Biojava-dev] [Bug 2435] Mistake in createRecord( ) of GFF3Parser

bugzilla-daemon at portal.open-bio.org bugzilla-daemon at portal.open-bio.org
Wed Jan 16 17:07:36 UTC 2008


http://bugzilla.open-bio.org/show_bug.cgi?id=2435





------- Comment #1 from pudimat at gmail.com  2008-01-16 12:07 EST -------
Another error in line 344 (method parseAttribute() ):
when splitting the key-value-pair of an attribute, the separating '=' is the
first
symbol of the attribute value.

Reason:  attValList = attVal.substring(spaceIndex).trim();
must be changed to 
attValList = attVal.substring(spaceIndex+1).trim();


-- 
Configure bugmail: http://bugzilla.open-bio.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the biojava-dev mailing list