2 * Jalview - A Sequence Alignment Editor and Viewer
\r
3 * Copyright (C) 2006 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle
\r
5 * This program is free software; you can redistribute it and/or
\r
6 * modify it under the terms of the GNU General Public License
\r
7 * as published by the Free Software Foundation; either version 2
\r
8 * of the License, or (at your option) any later version.
\r
10 * This program is distributed in the hope that it will be useful,
\r
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
\r
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\r
13 * GNU General Public License for more details.
\r
15 * You should have received a copy of the GNU General Public License
\r
16 * along with this program; if not, write to the Free Software
\r
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
\r
21 import jalview.datamodel.*;
\r
26 import java.awt.Color;
\r
29 public class PDBfile extends jalview.io.AlignFile {
\r
30 public Vector chains;
\r
33 public PDBfile(String inFile, String inType) throws IOException
\r
35 super(inFile, inType);
\r
38 public String print()
\r
43 public void parse() throws IOException
\r
46 chains = new Vector();
\r
50 boolean modelFlag = false;
\r
51 boolean terFlag = false;
\r
54 while ( (line = nextLine()) != null)
\r
56 if (line.indexOf("HEADER") == 0)
\r
58 id = line.substring(62, 67).trim();
\r
62 if (line.indexOf("MODEL") == 0)
\r
65 if (line.indexOf("TER") == 0)
\r
68 if (modelFlag && line.indexOf("ENDMDL") == 0)
\r
71 if (line.indexOf("ATOM") == 0
\r
72 || (line.indexOf("HETATM") == 0 && !terFlag)
\r
77 //Jalview is only interested in CA bonds????
\r
78 if (!line.substring(12, 15).trim().equals("CA"))
\r
83 Atom tmpatom = new Atom(line);
\r
84 tmpchain = findChain(tmpatom.chain);
\r
85 if (tmpchain != null)
\r
87 tmpchain.atoms.addElement(tmpatom);
\r
91 tmpchain = new PDBChain(tmpatom.chain);
\r
92 chains.addElement(tmpchain);
\r
93 tmpchain.atoms.addElement(tmpatom);
\r
104 id = inFile.getName();
\r
106 for (int i = 0; i < chains.size(); i++)
\r
108 SequenceI seq = ( (PDBChain) chains.elementAt(i)).
\r
110 seq.setName(id + "|" + seq.getName());
\r
111 Sequence dataset = new Sequence(seq.
\r
113 seq.getSequence().toString(),
\r
114 seq.getStart(), seq.getEnd());
\r
116 PDBEntry entry = new PDBEntry();
\r
118 if (inFile != null)
\r
119 entry.setFile(inFile.getAbsolutePath());
\r
121 seq.setDatasetSequence(dataset);
\r
122 dataset.addPDBId(entry);
\r
124 getSeqs().addElement(seq);
\r
126 }catch(OutOfMemoryError er)
\r
128 System.out.println("OUT OF MEMORY LOADING PDB FILE");
\r
129 throw new IOException("Out of memory loading PDB File");
\r
133 public void makeResidueList() {
\r
134 for (int i = 0; i < chains.size(); i++) {
\r
135 ((PDBChain) chains.elementAt(i)).makeResidueList();
\r
139 public void makeCaBondList() {
\r
140 for (int i = 0; i < chains.size(); i++) {
\r
141 ((PDBChain) chains.elementAt(i)).makeCaBondList();
\r
145 public PDBChain findChain(String id) {
\r
146 for (int i = 0; i < chains.size(); i++) {
\r
147 if (((PDBChain) chains.elementAt(i)).id.equals(id)) {
\r
148 return (PDBChain) chains.elementAt(i);
\r
155 public void setChargeColours() {
\r
156 for (int i = 0; i < chains.size(); i++) {
\r
157 ((PDBChain) chains.elementAt(i)).setChargeColours();
\r
161 public void setColours(jalview.schemes.ColourSchemeI cs) {
\r
162 for (int i = 0; i < chains.size(); i++) {
\r
163 ((PDBChain) chains.elementAt(i)).setChainColours(cs);
\r
167 public void setChainColours()
\r
169 for (int i = 0; i < chains.size(); i++)
\r
171 ((PDBChain) chains.elementAt(i)).setChainColours(
\r
172 Color.getHSBColor(1.0f / (float)i, .4f, 1.0f)
\r