X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fio%2FFastaFile.java;h=c69b8ce6804530264c3cfe5111cd3342ebad9ddf;hb=7bc226b58110fa26d9dbd3f0c78095d06909ffc3;hp=684f867f0fe28e123bb766a2dfb762629b256820;hpb=dd74fc4938723fe5ec48d4e5fdcfbe58ac42a48d;p=jalview.git diff --git a/src/jalview/io/FastaFile.java b/src/jalview/io/FastaFile.java index 684f867..c69b8ce 100755 --- a/src/jalview/io/FastaFile.java +++ b/src/jalview/io/FastaFile.java @@ -1,29 +1,26 @@ /* -* Jalview - A Sequence Alignment Editor and Viewer -* Copyright (C) 2006 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle -* -* This program is free software; you can redistribute it and/or -* modify it under the terms of the GNU General Public License -* as published by the Free Software Foundation; either version 2 -* of the License, or (at your option) any later version. -* -* This program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with this program; if not, write to the Free Software -* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA -*/ + * Jalview - A Sequence Alignment Editor and Viewer + * Copyright (C) 2007 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + */ package jalview.io; -import jalview.datamodel.*; - import java.io.*; -import java.util.*; - +import jalview.datamodel.*; /** * DOCUMENT ME! @@ -31,7 +28,8 @@ import java.util.*; * @author $author$ * @version $Revision$ */ -public class FastaFile extends AlignFile +public class FastaFile + extends AlignFile { /** * Length of a sequence line @@ -40,170 +38,180 @@ public class FastaFile extends AlignFile StringBuffer out; - /** - * Creates a new FastaFile object. - */ - public FastaFile() - { - } + /** + * Creates a new FastaFile object. + */ + public FastaFile() + { + } - /** - * Creates a new FastaFile object. - * - * @param inFile DOCUMENT ME! - * @param type DOCUMENT ME! - * - * @throws IOException DOCUMENT ME! - */ - public FastaFile(String inFile, String type) throws IOException - { - super(inFile, type); - } + /** + * Creates a new FastaFile object. + * + * @param inFile DOCUMENT ME! + * @param type DOCUMENT ME! + * + * @throws IOException DOCUMENT ME! + */ + public FastaFile(String inFile, String type) + throws IOException + { + super(inFile, type); + } - /** - * DOCUMENT ME! - * - * @throws IOException DOCUMENT ME! - */ - public void parse() throws IOException - { - StringBuffer sb = new StringBuffer(); - boolean firstLine = true; + /** + * DOCUMENT ME! + * + * @throws IOException DOCUMENT ME! + */ + public void parse() + throws IOException + { + StringBuffer sb = new StringBuffer(); + boolean firstLine = true; - String line; - Sequence seq = null; + String line; + Sequence seq = null; - boolean annotation = false; + boolean annotation = false; - while ((line = nextLine()) != null) + while ( (line = nextLine()) != null) + { + line = line.trim(); + if (line.length() > 0) + { + if (line.charAt(0) == '>') { - line = line.trim(); - if (line.length() > 0) + if (line.startsWith(">#_")) + { + if (annotation) { - if (line.charAt(0)=='>') - { - if (line.startsWith(">#_")) - { - if (annotation) - { - Annotation[] anots = new Annotation[sb.length()]; - String anotString = sb.toString(); - for (int i = 0; i < sb.length(); i++) - { - anots[i] = new Annotation(anotString.substring(i, i+1), - null, - ' ', 0); - } - AlignmentAnnotation aa = new AlignmentAnnotation( - seq.getName().substring(2), seq.getDescription(), - anots); - - annotations.addElement(aa); - } - } - else - annotation = false; - - if (!firstLine) - { - seq.setSequence(sb.toString()); - - if (!annotation) - seqs.addElement(seq); - } - - seq = parseId(line.substring(1)); - firstLine = false; - - sb = new StringBuffer(); - - if (line.startsWith(">#_")) - annotation = true; - } - else - { - sb.append(line); - } + Annotation[] anots = new Annotation[sb.length()]; + String anotString = sb.toString(); + for (int i = 0; i < sb.length(); i++) + { + anots[i] = new Annotation(anotString.substring(i, i + 1), + null, + ' ', 0); + } + AlignmentAnnotation aa = new AlignmentAnnotation( + seq.getName().substring(2), seq.getDescription(), + anots); + + annotations.addElement(aa); } - } + } + else + { + annotation = false; + } - if (annotation) - { - Annotation[] anots = new Annotation[sb.length()]; - String anotString = sb.toString(); - for (int i = 0; i < sb.length(); i++) + if (!firstLine) { - anots[i] = new Annotation(anotString.substring(i, i + 1), - null, - ' ', 0); + seq.setSequence(sb.toString()); + + if (!annotation) + { + seqs.addElement(seq); + } } - AlignmentAnnotation aa = new AlignmentAnnotation( - seq.getName().substring(2), seq.getDescription(), - anots); - annotations.addElement(aa); - } + seq = parseId(line.substring(1)); + firstLine = false; + + sb = new StringBuffer(); - else if (!firstLine) + if (line.startsWith(">#_")) + { + annotation = true; + } + } + else { - seq.setSequence(sb.toString()); - seqs.addElement(seq); + sb.append(line); } + } } - /** - * DOCUMENT ME! - * - * @param s DOCUMENT ME! - * @param len DOCUMENT ME! - * @param gaps DOCUMENT ME! - * @param displayId DOCUMENT ME! - * - * @return DOCUMENT ME! - */ - public String print(SequenceI[] s) + if (annotation) { - out = new StringBuffer(); - int i = 0; + Annotation[] anots = new Annotation[sb.length()]; + String anotString = sb.toString(); + for (int i = 0; i < sb.length(); i++) + { + anots[i] = new Annotation(anotString.substring(i, i + 1), + null, + ' ', 0); + } + AlignmentAnnotation aa = new AlignmentAnnotation( + seq.getName().substring(2), seq.getDescription(), + anots); + + annotations.addElement(aa); + } - while ((i < s.length) && (s[i] != null)) - { - out.append(">" + printId(s[i])); - if(s[i].getDescription()!=null) - out.append(" "+s[i].getDescription()); + else if (!firstLine) + { + seq.setSequence(sb.toString()); + seqs.addElement(seq); + } + } - out.append("\n"); + /** + * DOCUMENT ME! + * + * @param s DOCUMENT ME! + * @param len DOCUMENT ME! + * @param gaps DOCUMENT ME! + * @param displayId DOCUMENT ME! + * + * @return DOCUMENT ME! + */ + public String print(SequenceI[] s) + { + out = new StringBuffer(); + int i = 0; - int nochunks = (s[i].getLength() / len) + 1; + while ( (i < s.length) && (s[i] != null)) + { + out.append(">" + printId(s[i])); + if (s[i].getDescription() != null) + { + out.append(" " + s[i].getDescription()); + } - for (int j = 0; j < nochunks; j++) - { - int start = j * len; - int end = start + len; - - if (end < s[i].getLength()) - { - out.append(s[i].getSequenceAsString(start, end) + "\n"); - } - else if (start < s[i].getLength()) - { - out.append(s[i].getSequenceAsString(start, s[i].getLength()) + "\n"); - } - } + out.append("\n"); + + int nochunks = (s[i].getLength() / len) + 1; - i++; + for (int j = 0; j < nochunks; j++) + { + int start = j * len; + int end = start + len; + + if (end < s[i].getLength()) + { + out.append(s[i].getSequenceAsString(start, end) + "\n"); } + else if (start < s[i].getLength()) + { + out.append(s[i].getSequenceAsString(start, s[i].getLength()) + "\n"); + } + } - return out.toString(); + i++; } - /** - * DOCUMENT ME! - * - * @return DOCUMENT ME! - */ - public String print() - { - return print(getSeqsAsArray()); - } + return out.toString(); + } + + /** + * DOCUMENT ME! + * + * @return DOCUMENT ME! + */ + public String print() + { + return print(getSeqsAsArray()); + } }