Clover icon

Coverage Report

  1. Project Clover database Thu Nov 7 2024 13:01:17 GMT
  2. Package jalview.datamodel

File VisibleContigsIterator.java

 

Coverage histogram

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

Code metrics

12
31
4
1
114
75
11
0.35
7.75
4
2.75

Classes

Class Line # Actions
VisibleContigsIterator 32 31 11
1.0100%
 

Contributing tests

This file is covered by 46 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.datamodel;
22   
23    import java.util.ArrayList;
24    import java.util.Iterator;
25    import java.util.List;
26   
27    /**
28    * An iterator which iterates over visible regions in a range. Provides a
29    * special "endsAtHidden" indicator to allow callers to determine if the final
30    * visible column is adjacent to a hidden region.
31    */
 
32    public class VisibleContigsIterator implements Iterator<int[]>
33    {
34    private List<int[]> vcontigs = new ArrayList<>();
35   
36    private int currentPosition = 0;
37   
38    private boolean endsAtHidden = false;
39   
 
40  3305 toggle VisibleContigsIterator(int start, int end, List<int[]> hiddenColumns)
41    {
42  3305 if (hiddenColumns != null && hiddenColumns.size() > 0)
43    {
44  1168 int vstart = start;
45  1168 int hideStart;
46  1168 int hideEnd;
47   
48  1168 for (int[] region : hiddenColumns)
49    {
50  1941 endsAtHidden = false;
51  1941 hideStart = region[0];
52  1941 hideEnd = region[1];
53   
54    // navigate to start
55  1941 if (hideEnd < vstart)
56    {
57  515 continue;
58    }
59  1426 if (hideStart > vstart)
60    {
61  862 if (end - 1 > hideStart - 1)
62    {
63  606 int[] contig = new int[] { vstart, hideStart - 1 };
64  606 vcontigs.add(contig);
65  606 endsAtHidden = true;
66    }
67    else
68    {
69  256 int[] contig = new int[] { vstart, end - 1 };
70  256 vcontigs.add(contig);
71    }
72    }
73  1426 vstart = hideEnd + 1;
74   
75    // exit if we're past the end
76  1426 if (vstart >= end)
77    {
78  767 break;
79    }
80    }
81   
82  1168 if (vstart < end)
83    {
84  401 int[] contig = new int[] { vstart, end - 1 };
85  401 vcontigs.add(contig);
86  401 endsAtHidden = false;
87    }
88    }
89    else
90    {
91  2137 int[] contig = new int[] { start, end - 1 };
92  2137 vcontigs.add(contig);
93    }
94    }
95   
 
96  691579 toggle @Override
97    public boolean hasNext()
98    {
99  691772 return (currentPosition < vcontigs.size());
100    }
101   
 
102  3400 toggle @Override
103    public int[] next()
104    {
105  3400 int[] result = vcontigs.get(currentPosition);
106  3400 currentPosition++;
107  3400 return result;
108    }
109   
 
110  569 toggle public boolean endsAtHidden()
111    {
112  569 return endsAtHidden;
113    }
114    }