2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
23 import jalview.datamodel.Sequence;
24 import jalview.datamodel.SequenceI;
26 import java.io.IOException;
27 import java.util.Vector;
29 public class PIRFile extends AlignFile
31 public static boolean useModellerOutput = false;
33 Vector words = new Vector(); // Stores the words in a line after splitting
39 public PIRFile(String inFile, String type) throws IOException
44 public PIRFile(FileParse source) throws IOException
50 public void parse() throws IOException
52 StringBuffer sequence;
54 ModellerDescription md;
56 while ((line = nextLine()) != null)
58 if (line.length() == 0)
60 // System.out.println("blank line");
63 if (line.indexOf("C;") == 0 || line.indexOf("#") == 0)
67 Sequence newSeq = parseId(line.substring(line.indexOf(";") + 1));
69 sequence = new StringBuffer();
71 newSeq.setDescription(nextLine()); // this is the title line
73 boolean starFound = false;
78 sequence.append(line);
85 if (line.indexOf("*") > -1)
91 if (sequence.length() > 0)
93 sequence.setLength(sequence.length() - 1);
94 newSeq.setSequence(sequence.toString());
96 seqs.addElement(newSeq);
98 md = new ModellerDescription(newSeq.getDescription());
99 md.updateSequenceI(newSeq);
105 public String print()
107 return print(getSeqsAsArray());
110 public String print(SequenceI[] s)
112 boolean is_NA = jalview.util.Comparison.isNucleotide(s);
114 StringBuffer out = new StringBuffer();
116 ModellerDescription md;
118 while ((i < s.length) && (s[i] != null))
120 String seq = s[i].getSequenceAsString();
125 // modeller doesn't really do nucleotides, so we don't do anything fancy
126 // Official tags area as follows, for now we'll use P1 and DL
127 // Protein (complete) P1
128 // Protein (fragment) F1
134 // other functional RNA N1
136 out.append(">N1;" + s[i].getName());
138 if (s[i].getDescription() == null)
140 out.append(s[i].getName() + " "
141 + (s[i].getEnd() - s[i].getStart() + 1));
142 out.append(is_NA ? " bases" : " residues");
147 out.append(s[i].getDescription());
154 if (useModellerOutput)
156 out.append(">P1;" + s[i].getName());
158 md = new ModellerDescription(s[i]);
159 out.append(md.getDescriptionLine());
164 out.append(">P1;" + printId(s[i]));
166 if (s[i].getDescription() != null)
168 out.append(s[i].getDescription());
173 out.append(s[i].getName() + " "
174 + (s[i].getEnd() - s[i].getStart() + 1) + " residues");
179 int nochunks = (seq.length() / len)
180 + (seq.length() % len > 0 ? 1 : 0);
182 for (int j = 0; j < nochunks; j++)
185 int end = start + len;
187 if (end < seq.length())
189 out.append(seq.substring(start, end));
192 else if (start < seq.length())
194 out.append(seq.substring(start));
202 return out.toString();