features/JAL-1793VCF
Conflicts:
src/jalview/controller/AlignViewController.java
List<SequenceFeature> sfs = sq.findFeatures(startColumn,
endColumn, featureType);
- if (!sfs.isEmpty())
- {
- nseq++;
- }
-
+ boolean found = false;
for (SequenceFeature sf : sfs)
{
- {
- if (!visibleFeatures.contains(sf.getType())
- || fr.getColour(sf) == null) // could pull up getColour to
- // FeatureRenderer interface
- {
- continue;
+ {
+ if (!visibleFeatures.contains(sf.getType())
+ || fr.getColour(sf) == null) // could pull up getColour to FeatureRenderer interface
+ {
+ continue;
}
}
+ if (!found)
+ {
+ nseq++;
+ }
+ found = true;
++
int sfStartCol = sq.findIndex(sf.getBegin());
int sfEndCol = sq.findIndex(sf.getEnd());