2 * Jalview - A Sequence Alignment Editor and Viewer (Version 2.4)
3 * Copyright (C) 2008 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
35 public String resName;
39 public char insCode = ' ';
41 public String resNumIns = null;
45 Color color = Color.lightGray;
49 public int alignmentMapping = -1;
53 public float occupancy = 0;
55 public float tfactor = 0;
57 public boolean isSelected = false;
59 public Atom(String str)
61 atomIndex = Integer.parseInt(str.substring(6, 11).trim());
63 name = str.substring(12, 15).trim();
65 resName = str.substring(17, 20);
67 chain = str.substring(21, 22);
69 resNumber = Integer.parseInt(str.substring(22, 26).trim());
70 resNumIns = str.substring(22, 27);
71 insCode = str.substring(26, 27).charAt(0);
72 this.x = (float) (new Float(str.substring(30, 38).trim()).floatValue());
73 this.y = (float) (new Float(str.substring(38, 46).trim()).floatValue());
74 this.z = (float) (new Float(str.substring(47, 55).trim()).floatValue());
75 occupancy = (float) (new Float(str.substring(54, 60).trim())
77 tfactor = (float) (new Float(str.substring(60, 66).trim()).floatValue());
80 public Atom(float x, float y, float z)
86 // public void setColor(Color col) {