X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fio%2FSimpleBlastFile.java;fp=src%2Fjalview%2Fio%2FSimpleBlastFile.java;h=ba6b2f3606db2758e4ecffc444318a3b7aec9f0f;hb=88bc41a8d340988625001b2828625c1a668cadd9;hp=1b7254593c1f4057be96b9d0ae3a1c09565f7784;hpb=4efe5c8d36740fc15d862edd5b121c56df7f1c94;p=jalview.git diff --git a/src/jalview/io/SimpleBlastFile.java b/src/jalview/io/SimpleBlastFile.java index 1b72545..ba6b2f3 100644 --- a/src/jalview/io/SimpleBlastFile.java +++ b/src/jalview/io/SimpleBlastFile.java @@ -165,8 +165,8 @@ public class SimpleBlastFile extends AlignFile rstart = Long.parseLong(stindx); } catch (Exception e) { - System.err.println("Couldn't parse '" + stindx - + "' as start of row"); + System.err.println( + "Couldn't parse '" + stindx + "' as start of row"); // inAlignments = false; // warn for this line } @@ -175,8 +175,8 @@ public class SimpleBlastFile extends AlignFile rend = Long.parseLong(endindx); } catch (Exception e) { - System.err.println("Couldn't parse '" + endindx - + "' as end of row"); + System.err.println( + "Couldn't parse '" + endindx + "' as end of row"); // inAlignments = false; // warn for this line @@ -204,7 +204,8 @@ public class SimpleBlastFile extends AlignFile { padseq = true; // prepend gaps to new sequences in this block seqentry = new Object[] { new StringBuffer(), - new long[] { rstart, rend } }; + new long[] + { rstart, rend } }; seqentries.addElement(seqentry); seqhash.put(sqid, seqentry); @@ -258,7 +259,7 @@ public class SimpleBlastFile extends AlignFile { Sequence newseq = new Sequence(idstring, - ((StringBuffer) seqentry[0]).toString(), + ((StringBuffer) seqentry[0]).toString(), (int) ((long[]) seqentry[1])[0], (int) ((long[]) seqentry[1])[1]); if (newseq.getEnd() == 0)