Clover icon

jalviewX

  1. Project Clover database Wed Oct 31 2018 15:13:58 GMT
  2. Package jalview.renderer

File ScaleRenderer.java

 

Coverage histogram

../../img/srcFileCovDistChart10.png
0% of files have more coverage

Code metrics

14
38
2
2
156
84
10
0.26
19
1
5

Classes

Class Line # Actions
ScaleRenderer 37 35 9 2
0.9696%
ScaleRenderer.ScaleMark 42 3 1 0
1.0100%
 

Contributing tests

This file is covered by 21 tests. .

Source view

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 jalview.renderer;
22   
23    import jalview.api.AlignViewportI;
24    import jalview.datamodel.HiddenColumns;
25    import jalview.datamodel.SequenceI;
26   
27    import java.util.ArrayList;
28    import java.util.Iterator;
29    import java.util.List;
30   
31    /**
32    * Calculate and display alignment rulers
33    *
34    * @author jprocter
35    *
36    */
 
37    public class ScaleRenderer
38    {
39    /**
40    * Represents one major or minor scale mark
41    */
 
42    public final class ScaleMark
43    {
44    /**
45    * true for a major scale mark, false for minor
46    */
47    public final boolean major;
48   
49    /**
50    * visible column position (0..) e.g. 19
51    */
52    public final int column;
53   
54    /**
55    * text (if any) to show e.g. "20"
56    */
57    public final String text;
58   
 
59  9102 toggle ScaleMark(boolean isMajor, int col, String txt)
60    {
61  9102 major = isMajor;
62  9102 column = col;
63  9102 text = txt;
64    }
65    }
66   
67    /**
68    * calculate positions markers on the alignment ruler
69    *
70    * @param av
71    * @param startx
72    * left-most column in visible view
73    * @param endx
74    * - right-most column in visible view
75    * @return List of ScaleMark holding boolean: true/false for major/minor mark,
76    * marker position in alignment column coords, a String to be rendered
77    * at the position (or null)
78    */
 
79  735 toggle public List<ScaleMark> calculateMarks(AlignViewportI av, int startx,
80    int endx)
81    {
82  735 int scalestartx = (startx / 10) * 10;
83   
84  735 SequenceI refSeq = av.getAlignment().getSeqrep();
85  735 int refSp = 0;
86  735 int refStartI = 0;
87  735 int refEndI = -1;
88   
89  735 HiddenColumns hc = av.getAlignment().getHiddenColumns();
90   
91  735 if (refSeq != null)
92    {
93    // find bounds and set origin appropriately
94    // locate first residue in sequence which is not hidden
95  64 Iterator<int[]> it = hc.iterator();
96  64 int index = refSeq.firstResidueOutsideIterator(it);
97  64 refSp = hc.absoluteToVisibleColumn(index);
98   
99  64 refStartI = refSeq.findIndex(refSeq.getStart()) - 1;
100   
101  64 int seqlength = refSeq.getLength();
102    // get sequence position past the end of the sequence
103  64 int pastEndPos = refSeq.findPosition(seqlength + 1);
104  64 refEndI = refSeq.findIndex(pastEndPos - 1) - 1;
105   
106  64 scalestartx = refSp + ((scalestartx - refSp) / 10) * 10;
107    }
108   
109  735 if (refSeq == null && scalestartx % 10 == 0)
110    {
111  671 scalestartx += 5;
112    }
113  735 List<ScaleMark> marks = new ArrayList<>();
114  735 String string;
115  735 int refN, iadj;
116    // todo: add a 'reference origin column' to set column number relative to
117  9837 for (int i = scalestartx; i <= endx; i += 5)
118    {
119  9102 if (((i - refSp) % 10) == 0)
120    {
121  4245 if (refSeq == null)
122    {
123  3802 iadj = hc.visibleToAbsoluteColumn(i - 1) + 1;
124  3802 string = String.valueOf(iadj);
125    }
126    else
127    {
128  443 iadj = hc.visibleToAbsoluteColumn(i - 1);
129  443 refN = refSeq.findPosition(iadj);
130    // TODO show bounds if position is a gap
131    // - ie L--R -> "1L|2R" for
132    // marker
133  443 if (iadj < refStartI)
134    {
135  5 string = String.valueOf(iadj - refStartI);
136    }
137  438 else if (iadj > refEndI)
138    {
139  0 string = "+" + String.valueOf(iadj - refEndI);
140    }
141    else
142    {
143  438 string = String.valueOf(refN) + refSeq.getCharAt(iadj);
144    }
145    }
146  4245 marks.add(new ScaleMark(true, i - startx - 1, string));
147    }
148    else
149    {
150  4857 marks.add(new ScaleMark(false, i - startx - 1, null));
151    }
152    }
153  735 return marks;
154    }
155   
156    }