JAL-1645 Version-Rel Version 2.9 Year-Rel 2015 Licensing glob
[jalview.git] / src / jalview / structure / StructureMapping.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.9)
3  * Copyright (C) 2015 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 jalview.structure;
22
23 import jalview.datamodel.AlignmentAnnotation;
24 import jalview.datamodel.SequenceI;
25
26 public class StructureMapping
27 {
28   String mappingDetails;
29
30   SequenceI sequence;
31
32   String pdbfile;
33
34   String pdbid;
35
36   String pdbchain;
37
38   // Mapping index 0 is resNum, index 1 is atomNo
39   int[][] mapping;
40
41   public StructureMapping(SequenceI seq, String pdbfile, String pdbid,
42           String chain, int[][] mapping, String mappingDetails)
43   {
44     sequence = seq;
45     this.pdbfile = pdbfile;
46     this.pdbid = pdbid;
47     this.pdbchain = chain;
48     this.mapping = mapping;
49     this.mappingDetails = mappingDetails;
50   }
51
52   public SequenceI getSequence()
53   {
54     return sequence;
55   }
56
57   public String getChain()
58   {
59     return pdbchain;
60   }
61
62   public String getPdbId()
63   {
64     return pdbid;
65   }
66
67   /**
68    * 
69    * @param seqpos
70    * @return 0 or corresponding atom number for the sequence position
71    */
72   public int getAtomNum(int seqpos)
73   {
74     if (mapping.length > seqpos)
75     {
76       return mapping[seqpos][1];
77     }
78     else
79     {
80       return 0;
81     }
82   }
83
84   /**
85    * 
86    * @param seqpos
87    * @return 0 or the corresponding residue number for the sequence position
88    */
89   public int getPDBResNum(int seqpos)
90   {
91     if (mapping.length > seqpos)
92     {
93       return mapping[seqpos][0];
94     }
95     else
96     {
97       return 0;
98     }
99   }
100
101   /**
102    * 
103    * @param pdbResNum
104    * @return -1 or the corresponding sequence position for a pdb residue number
105    */
106   public int getSeqPos(int pdbResNum)
107   {
108     for (int i = 0; i < mapping.length; i++)
109     {
110       if (mapping[i][0] == pdbResNum)
111       {
112         return i;
113       }
114     }
115     return -1;
116   }
117
118   /**
119    * transfer a copy of an alignment annotation row in the PDB chain coordinate
120    * system onto the mapped sequence
121    * 
122    * @param ana
123    * @return the copy that was remapped to the mapped sequence
124    * @note this method will create a copy and add it to the dataset sequence for
125    *       the mapped sequence as well as the mapped sequence (if it is not a
126    *       dataset sequence).
127    */
128   public AlignmentAnnotation transfer(AlignmentAnnotation ana)
129   {
130     AlignmentAnnotation ala_copy = new AlignmentAnnotation(ana);
131     SequenceI ds = sequence;
132     while (ds.getDatasetSequence() != null)
133     {
134       ds = ds.getDatasetSequence();
135     }
136     // need to relocate annotation from pdb coordinates to local sequence
137     // -1,-1 doesn't look at pdbresnum but fails to remap sequence positions...
138
139     ala_copy.remap(ds, mapping, -1, -1, 0);
140     ds.addAlignmentAnnotation(ala_copy);
141     if (ds != sequence)
142     {
143       // mapping wasn't to an original dataset sequence, so we make a copy on
144       // the mapped sequence too
145       ala_copy = new AlignmentAnnotation(ala_copy);
146       sequence.addAlignmentAnnotation(ala_copy);
147     }
148     return ala_copy;
149   }
150 }