Updated BioJs Html to be capable of launching jalivew
[jalview.git] / src / jalview / structure / StructureMapping.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2)
3  * Copyright (C) 2014 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.*;
24
25 public class StructureMapping
26 {
27   String mappingDetails;
28
29   SequenceI sequence;
30
31   String pdbfile;
32
33   String pdbid;
34
35   String pdbchain;
36
37   // Mapping index 0 is resNum, index 1 is atomNo
38   int[][] mapping;
39
40   public StructureMapping(SequenceI seq, String pdbfile, String pdbid,
41           String chain, int[][] mapping, String mappingDetails)
42   {
43     sequence = seq;
44     this.pdbfile = pdbfile;
45     this.pdbid = pdbid;
46     this.pdbchain = chain;
47     this.mapping = mapping;
48     this.mappingDetails = mappingDetails;
49   }
50
51   public SequenceI getSequence()
52   {
53     return sequence;
54   }
55
56   public String getChain()
57   {
58     return pdbchain;
59   }
60
61   public String getPdbId()
62   {
63     return pdbid;
64   }
65
66   public int getAtomNum(int seqpos)
67   {
68     if (mapping.length > seqpos)
69     {
70       return mapping[seqpos][1];
71     }
72     else
73     {
74       return 0;
75     }
76   }
77
78   public int getPDBResNum(int seqpos)
79   {
80     if (mapping.length > seqpos)
81     {
82       return mapping[seqpos][0];
83     }
84     else
85     {
86       return 0;
87     }
88   }
89
90   public int getSeqPos(int pdbResNum)
91   {
92     for (int i = 0; i < mapping.length; i++)
93     {
94       if (mapping[i][0] == pdbResNum)
95       {
96         return i;
97       }
98     }
99     return -1;
100   }
101 }