JAL-1919 PDBfile and JmolParser refactor
[jalview.git] / src / MCview / Atom.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3  * Copyright (C) $$Year-Rel$$ The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
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.
11  *  
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.
16  * 
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.
20  */
21 package MCview;
22
23 import jalview.schemes.ResidueProperties;
24
25 import java.awt.Color;
26
27 public class Atom
28 {
29   public float x;
30
31   public float y;
32
33   public float z;
34
35   public int number;
36
37   public String name;
38
39   public String resName;
40
41   public int resNumber;
42
43   public char insCode = ' ';
44
45   public String resNumIns = null;
46
47   public int type;
48
49   public char ss;
50
51   Color color = Color.lightGray;
52
53   public String chain;
54
55   /**
56    * this is a temporary value - designed to store the position in sequence that
57    * this atom corresponds to after aligning the chain to a SequenceI object. Do
58    * not rely on its value being correct when visualizing sequence colourings on
59    * the structure - use the StructureSelectionManager's mapping instead.
60    */
61   public int alignmentMapping = -1;
62
63   public int atomIndex;
64
65   public float occupancy = 0;
66
67   public float tfactor = 0;
68
69   // need these if we ever want to export Atom data
70   // public boolean tfacset=true,occset=true;
71   public boolean isSelected = false;
72
73   public Atom(String str)
74   {
75     atomIndex = Integer.parseInt(str.substring(6, 11).trim());
76
77     name = str.substring(12, 15).trim();
78
79     resName = str.substring(17, 20);
80     // JAL-1828 treat MSE Selenomethionine as MET (etc)
81     resName = ResidueProperties.getCanonicalAminoAcid(resName);
82
83     chain = str.substring(21, 22);
84
85     resNumber = Integer.parseInt(str.substring(22, 26).trim());
86     resNumIns = str.substring(22, 27);
87     insCode = str.substring(26, 27).charAt(0);
88     this.x = (new Float(str.substring(30, 38).trim()).floatValue());
89     this.y = (new Float(str.substring(38, 46).trim()).floatValue());
90     this.z = (new Float(str.substring(47, 55).trim()).floatValue());
91     // optional entries - see JAL-730
92     String tm = str.substring(54, 60).trim();
93     if (tm.length() > 0)
94     {
95       occupancy = (new Float(tm)).floatValue();
96     }
97     else
98     {
99       occupancy = 1f; // default occupancy
100       // see note above: occset=false;
101     }
102     tm = str.substring(60, 66).trim();
103     if (tm.length() > 0)
104     {
105       tfactor = (new Float(tm).floatValue());
106     }
107     else
108     {
109       tfactor = 1f;
110       // see note above: tfacset=false;
111     }
112   }
113
114   public Atom(float x, float y, float z)
115   {
116     this.x = x;
117     this.y = y;
118     this.z = z;
119   }
120 }