X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fio%2FBLCFile.java;h=0edcb63556fc402b41d1a9fdb3f0d9dcbc0b2657;hb=3ca1aeccca8d3adfd55d1ff8bd447f8bf0d4ac2f;hp=78c1c24cc4108509692121c873308fd59de36045;hpb=b5dceeaf4112cd63aa1642dd8851b3ec19a7c81e;p=jalview.git diff --git a/src/jalview/io/BLCFile.java b/src/jalview/io/BLCFile.java index 78c1c24..0edcb63 100755 --- a/src/jalview/io/BLCFile.java +++ b/src/jalview/io/BLCFile.java @@ -1,172 +1,267 @@ -/* Jalview - a java multiple alignment editor - * Copyright (C) 1998 Michele Clamp - * - * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - */ +/* +* Jalview - A Sequence Alignment Editor and Viewer +* Copyright (C) 2005 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.*; -public class BLCFile extends AlignFile { - Vector titles; +/** + * DOCUMENT ME! + * + * @author $author$ + * @version $Revision$ + */ +public class BLCFile extends AlignFile +{ + Vector titles; + + /** + * Creates a new BLCFile object. + */ + public BLCFile() + { + } + + /** + * Creates a new BLCFile object. + * + * @param inStr DOCUMENT ME! + */ + public BLCFile(String inStr) + { + super(inStr); + } - public BLCFile() - {} + /** + * Creates a new BLCFile object. + * + * @param inFile DOCUMENT ME! + * @param type DOCUMENT ME! + * + * @throws IOException DOCUMENT ME! + */ + public BLCFile(String inFile, String type) throws IOException + { + super(inFile, type); + } - public BLCFile(String inStr) { - super(inStr); - } + /** + * DOCUMENT ME! + */ + public void initData() + { + super.initData(); + titles = new Vector(); + } - public void initData() { - super.initData(); - titles = new Vector(); - } + /** + * DOCUMENT ME! + */ + public void parse() + { + boolean idsFound = false; + Vector ids = new Vector(); + StringBuffer[] seqstrings; + Vector starts = new Vector(); + Vector ends = new Vector(); - public BLCFile(String inFile, String type) throws IOException { - super(inFile,type); - } + String line = null; + try + { + do + { + line = nextLine(); - public void parse() - { - boolean idsFound=false; - Vector ids = new Vector(); - StringBuffer seqstrings []; - Vector starts = new Vector(); - Vector ends = new Vector(); + // seek end of ids + if (line.indexOf("*") > -1) + { + idsFound = true; - String line=null; - try{ - do{ - line = nextLine(); + break; + } - // seek end of ids - if (line.indexOf("*") > -1) - { - idsFound=true; - break; - } + int abracket = line.indexOf(">"); - int abracket = line.indexOf(">"); + if (abracket > -1) + { + if (line.indexOf(" ") > -1) // + { + ///Colur it be this format? + //>54402046 0 1 137 137: + // or this?? + // 1 >L1H14 30539 343 + try + { + ids.addElement(line.substring(abracket + 1, + line.indexOf(" ", abracket + 1))); - if (abracket > -1) - { + // remove p Value + line = line.substring(abracket + 1); + line = line.substring(line.indexOf(" ") + 1); + line = line.trim(); + line = line.substring(line.indexOf(" ") + 1); + line = line.trim(); - if(line.indexOf(" ")>-1)// - { - ///Colur it be this format? - //>54402046 0 1 137 137: - // or this?? - // 1 >L1H14 30539 343 - try{ - ids.addElement(line.substring(abracket + 1, - line.indexOf(" ", abracket + 1))); - - - // remove p Value - line = line.substring(abracket + 1); - line = line.substring(line.indexOf(" ") + 1); - line = line.trim(); - line = line.substring(line.indexOf(" ") + 1); - line = line.trim(); - int value = Integer.parseInt(line.substring(0, line.indexOf(" "))); - starts.addElement(value+""); - line = line.substring(line.indexOf(" ") + 1); - line = line.trim(); - value = Integer.parseInt(line.substring(0, line.indexOf(" "))); - ends.addElement(value+""); - - }catch(Exception ex) - { - System.out.println("err"); - starts.addElement("0"); - ends.addElement("0"); - } + int value = Integer.parseInt(line.substring(0, + line.indexOf(" "))); + starts.addElement(value + ""); + line = line.substring(line.indexOf(" ") + 1); + line = line.trim(); + value = Integer.parseInt(line.substring(0, + line.indexOf(" "))); + ends.addElement(value + ""); + } + catch (Exception ex) + { + System.err.println("Error during blockfile read."); + ex.printStackTrace(); + starts.addElement("1"); + ends.addElement("-1"); + } + } + else + { + if (line.indexOf("/") > -1) + { + ids.addElement(line.substring(abracket + 1, + line.indexOf("/"))); + line = line.substring(line.indexOf("/") + 1); + starts.addElement(line.substring(0, + line.indexOf("-"))); + ends.addElement(line.substring(line.indexOf("-") + + 1)); + } + else + { + ids.addElement(line.substring(abracket + 1)); + starts.addElement("1"); + ends.addElement("-1"); + } + } + } + } + while (!idsFound); + int starCol = line.indexOf("*"); + seqstrings = new StringBuffer[ids.size()]; + + for (int i = 0; i < ids.size(); i++) + { + if (seqstrings[i] == null) + { + seqstrings[i] = new StringBuffer(); + } + } + + while ((line = nextLine()).indexOf("*") == -1) + { + for (int i = 0; i < ids.size(); i++) + { + if (line.length() > (i + starCol)) + { + seqstrings[i].append(line.charAt(i + starCol)); + } + } + } + + for (int i = 0; i < ids.size(); i++) + { + Sequence newSeq = new Sequence(ids.elementAt(i).toString(), + seqstrings[i].toString(), + Integer.parseInt(starts.elementAt(i).toString()), + Integer.parseInt(ends.elementAt(i).toString())); + seqs.addElement(newSeq); + } } - else + catch (Exception ex) { - ids.addElement( line.substring(abracket + 1, line.indexOf("/"))); - line = line.substring(line.indexOf("/") + 1); - starts.addElement(line.substring(0, line.indexOf("-"))); - ends.addElement(line.substring(line.indexOf("-") + 1)); + ex.printStackTrace(); } - } - }while(!idsFound); - - int starCol = line.indexOf("*"); - seqstrings = new StringBuffer[ids.size()]; - for(int i=0; ii+starCol) - seqstrings[i].append(line.charAt(i + starCol)); - } + return print(getSeqsAsArray()); } - for(int i=0; i" + s[i].getName() + "/" + s[i].getStart() + "-" + s[i].getEnd() + "\n"); - if (s[i].getSequence().length() > max) { max = s[i].getSequence().length();} - i++; - } + int i = 0; + int max = -1; + + while ((i < s.length) && (s[i] != null)) + { + out.append(">" + s[i].getName() + "/" + s[i].getStart() + "-" + + s[i].getEnd() + "\n"); + + if (s[i].getSequence().length() > max) + { + max = s[i].getSequence().length(); + } - out.append("* iteration 1\n"); - for (int j = 0; j < max; j++) { - i=0; - while (i < s.length && s[i] != null) { - if(s[i].getSequence().length()>j ) - out.append(s[i].getSequence().substring(j,j+1)); - else - out.append("-"); - i++; + i++; } - out.append("\n"); - } - out.append("*\n"); - return out.toString(); - } + out.append("* iteration 1\n"); + + for (int j = 0; j < max; j++) + { + i = 0; + + while ((i < s.length) && (s[i] != null)) + { + if (s[i].getSequence().length() > j) + { + out.append(s[i].getSequence().substring(j, j + 1)); + } + else + { + out.append("-"); + } + + i++; + } + + out.append("\n"); + } + + out.append("*\n"); + + return out.toString(); + } }