read start end if available
[jalview.git] / src / jalview / io / BLCFile.java
1 /* Jalview - a java multiple alignment editor\r
2  * Copyright (C) 1998  Michele Clamp\r
3  *\r
4  * This program is free software; you can redistribute it and/or\r
5  * modify it under the terms of the GNU General Public License\r
6  * as published by the Free Software Foundation; either version 2\r
7  * of the License, or (at your option) any later version.\r
8  *\r
9  * This program is distributed in the hope that it will be useful,\r
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
12  * GNU General Public License for more details.\r
13  *\r
14  * You should have received a copy of the GNU General Public License\r
15  * along with this program; if not, write to the Free Software\r
16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.\r
17  */\r
18 package jalview.io;\r
19 \r
20 import jalview.datamodel.*;\r
21 \r
22 import java.io.*;\r
23 import java.util.*;\r
24 import java.net.*;\r
25 import java.awt.Font;\r
26 \r
27 public class BLCFile extends AlignFile {\r
28 \r
29   Vector titles;\r
30 \r
31   public BLCFile()\r
32   {}\r
33 \r
34   public BLCFile(String inStr) {\r
35     super(inStr);\r
36   }\r
37 \r
38   public void initData() {\r
39     super.initData();\r
40     titles = new Vector();\r
41   }\r
42 \r
43   public BLCFile(String inFile, String type) throws IOException {\r
44     super(inFile,type);\r
45   }\r
46 \r
47 \r
48   public void parse()\r
49   {\r
50     boolean idsFound=false;\r
51     Vector ids = new Vector();\r
52     StringBuffer seqstrings [];\r
53     Vector starts = new Vector();\r
54     Vector ends = new Vector();\r
55 \r
56    String line=null;\r
57    try{\r
58      do{\r
59       line = nextLine();\r
60 \r
61       // seek end of ids\r
62       if (line.indexOf("*") > -1)\r
63       {\r
64         idsFound=true;\r
65         break;\r
66       }\r
67 \r
68       int abracket = line.indexOf(">");\r
69 \r
70       if (abracket > -1)\r
71       {\r
72 \r
73         if(line.indexOf(" ")>-1)//\r
74         {\r
75           ///Colur it be this format?\r
76           //>54402046         0             1   137   137:\r
77           // or this??\r
78           //     1   >L1H14       30539  343\r
79           try{\r
80             ids.addElement(line.substring(abracket + 1,\r
81                                           line.indexOf(" ", abracket + 1)));\r
82 \r
83 \r
84             // remove p Value\r
85             line = line.substring(abracket + 1);\r
86             line = line.substring(line.indexOf(" ") + 1);\r
87             line = line.trim();\r
88             line = line.substring(line.indexOf(" ") + 1);\r
89             line = line.trim();\r
90             int value = Integer.parseInt(line.substring(0, line.indexOf(" ")));\r
91             starts.addElement(value+"");\r
92             line = line.substring(line.indexOf(" ") + 1);\r
93             line = line.trim();\r
94             value = Integer.parseInt(line.substring(0, line.indexOf(" ")));\r
95             ends.addElement(value+"");\r
96 \r
97           }catch(Exception ex)\r
98           {\r
99             System.out.println("err");\r
100             starts.addElement("0");\r
101             ends.addElement("0");\r
102           }\r
103 \r
104         }\r
105         else\r
106         {\r
107           ids.addElement( line.substring(abracket + 1, line.indexOf("/")));\r
108           line = line.substring(line.indexOf("/") + 1);\r
109           starts.addElement(line.substring(0, line.indexOf("-")));\r
110           ends.addElement(line.substring(line.indexOf("-") + 1));\r
111         }\r
112       }\r
113     }while(!idsFound);\r
114 \r
115     int starCol = line.indexOf("*");\r
116     seqstrings = new StringBuffer[ids.size()];\r
117     for(int i=0; i<ids.size(); i++)\r
118     {\r
119       if(seqstrings[i]==null)\r
120         seqstrings[i] = new StringBuffer();\r
121     }\r
122 \r
123     while ((line = nextLine()).indexOf("*")==-1)\r
124     {\r
125       for(int i=0; i<ids.size(); i++)\r
126       {\r
127         if(line.length()>i+starCol)\r
128           seqstrings[i].append(line.charAt(i + starCol));\r
129       }\r
130     }\r
131 \r
132     for(int i=0; i<ids.size(); i++)\r
133     {\r
134       Sequence newSeq = new Sequence(ids.elementAt(i).toString(),\r
135                                      seqstrings[i].toString(),\r
136                                      Integer.parseInt(starts.elementAt(i).toString()),\r
137                                      Integer.parseInt(ends.elementAt(i).toString()));\r
138       seqs.addElement(newSeq);\r
139     }\r
140 \r
141    }catch(Exception ex){ex.printStackTrace();}\r
142   }\r
143 \r
144   public String print() {\r
145     return print(getSeqsAsArray());\r
146   }\r
147   public static String print(SequenceI[] s) {\r
148     StringBuffer out = new StringBuffer();\r
149 \r
150     int i=0;\r
151     int max = -1;\r
152     while (i < s.length && s[i] != null) {\r
153       out.append(">" + s[i].getName() + "/" + s[i].getStart() + "-" + s[i].getEnd() + "\n");\r
154       if (s[i].getSequence().length() > max) { max = s[i].getSequence().length();}\r
155       i++;\r
156     }\r
157 \r
158       out.append("* iteration 1\n");\r
159       for (int j = 0; j < max; j++) {\r
160         i=0;\r
161         while (i < s.length && s[i] != null) {\r
162           if(s[i].getSequence().length()>j )\r
163             out.append(s[i].getSequence().substring(j,j+1));\r
164           else\r
165             out.append("-");\r
166           i++;\r
167         }\r
168         out.append("\n");\r
169       }\r
170     out.append("*\n");\r
171     return out.toString();\r
172 \r
173   }\r
174 }\r