X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fio%2FBLCFile.java;h=f024415c965b0e0f05645d2e1e416db84e2764df;hb=af1471fa3d7d3cb32d203e81d394838608dd1c96;hp=c9960be0b89bd1d2c7e74be787576dab2403b875;hpb=d423f22792e47dbc800ae220a58677f988971d06;p=jalview.git diff --git a/src/jalview/io/BLCFile.java b/src/jalview/io/BLCFile.java index c9960be..f024415 100755 --- a/src/jalview/io/BLCFile.java +++ b/src/jalview/io/BLCFile.java @@ -1,5 +1,5 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.5) + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.6) * Copyright (C) 2010 J Procter, AM Waterhouse, G Barton, M Clamp, S Searle * * This file is part of Jalview. @@ -142,7 +142,7 @@ public class BLCFile extends AlignFile { // header lines - keep them for the alignment comments. headerLines.append(line); - headerLines.append("\n"); + headerLines.append(newline); numHeaderLines++; } } while (!idsFound); @@ -240,7 +240,7 @@ public class BLCFile extends AlignFile out.append(" " + s[i].getDescription()); } - out.append("\n"); + out.append(newline); if (s[i].getSequence().length > max) { @@ -250,7 +250,8 @@ public class BLCFile extends AlignFile i++; } - out.append("* iteration 1\n"); + out.append("* iteration 1"); + out.append(newline); for (int j = 0; j < max; j++) { @@ -270,10 +271,11 @@ public class BLCFile extends AlignFile i++; } - out.append("\n"); + out.append(newline); } - out.append("*\n"); + out.append("*"); + out.append(newline); return out.toString(); }