| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
|
| 18 |
|
|
| 19 |
|
|
| 20 |
|
|
| 21 |
|
package jalview.datamodel; |
| 22 |
|
|
| 23 |
|
import java.util.ArrayList; |
| 24 |
|
import java.util.BitSet; |
| 25 |
|
import java.util.List; |
| 26 |
|
|
| 27 |
|
|
| 28 |
|
|
| 29 |
|
|
| 30 |
|
|
| 31 |
|
@author |
| 32 |
|
|
| 33 |
|
|
| |
|
| 88.5% |
Uncovered Elements: 18 (156) |
Complexity: 43 |
Complexity Density: 0.43 |
|
| 34 |
|
public class SearchResults implements SearchResultsI |
| 35 |
|
{ |
| 36 |
|
private int count; |
| 37 |
|
|
| 38 |
|
private ArrayList<SearchResultMatchI> matches = new ArrayList<>(); |
| 39 |
|
|
| 40 |
|
|
| 41 |
|
|
| 42 |
|
|
| 43 |
|
|
| |
|
| 56.1% |
Uncovered Elements: 29 (66) |
Complexity: 21 |
Complexity Density: 0.58 |
|
| 44 |
|
public class Match |
| 45 |
|
implements SearchResultMatchI, Comparable<SearchResultMatchI> |
| 46 |
|
{ |
| 47 |
|
final SequenceI sequence; |
| 48 |
|
|
| 49 |
|
|
| 50 |
|
|
| 51 |
|
|
| 52 |
|
final int start; |
| 53 |
|
|
| 54 |
|
|
| 55 |
|
|
| 56 |
|
|
| 57 |
|
final int end; |
| 58 |
|
|
| 59 |
|
|
| 60 |
|
|
| 61 |
|
|
| 62 |
|
|
| 63 |
|
|
| 64 |
|
|
| 65 |
|
@param |
| 66 |
|
|
| 67 |
|
@param |
| 68 |
|
|
| 69 |
|
@param |
| 70 |
|
|
| 71 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (8) |
Complexity: 2 |
Complexity Density: 0.33 |
|
| 72 |
284 |
public Match(SequenceI seq, int start, int end)... |
| 73 |
|
{ |
| 74 |
284 |
sequence = seq; |
| 75 |
|
|
| 76 |
|
|
| 77 |
|
|
| 78 |
|
|
| 79 |
|
|
| 80 |
|
|
| 81 |
284 |
if (start <= end) |
| 82 |
|
{ |
| 83 |
283 |
this.start = start; |
| 84 |
283 |
this.end = end; |
| 85 |
|
} |
| 86 |
|
else |
| 87 |
|
{ |
| 88 |
|
|
| 89 |
|
|
| 90 |
|
|
| 91 |
1 |
this.start = end; |
| 92 |
1 |
this.end = start; |
| 93 |
|
} |
| 94 |
|
} |
| 95 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 96 |
350 |
@Override... |
| 97 |
|
public SequenceI getSequence() |
| 98 |
|
{ |
| 99 |
350 |
return sequence; |
| 100 |
|
} |
| 101 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 102 |
330 |
@Override... |
| 103 |
|
public int getStart() |
| 104 |
|
{ |
| 105 |
330 |
return start; |
| 106 |
|
} |
| 107 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 108 |
260 |
@Override... |
| 109 |
|
public int getEnd() |
| 110 |
|
{ |
| 111 |
260 |
return end; |
| 112 |
|
} |
| 113 |
|
|
| 114 |
|
|
| 115 |
|
|
| 116 |
|
|
| |
|
| 85.7% |
Uncovered Elements: 1 (7) |
Complexity: 2 |
Complexity Density: 0.4 |
|
| 117 |
7 |
@Override... |
| 118 |
|
public String toString() |
| 119 |
|
{ |
| 120 |
7 |
StringBuilder sb = new StringBuilder(); |
| 121 |
7 |
if (sequence != null) |
| 122 |
|
{ |
| 123 |
7 |
sb.append(sequence.getName()).append("/"); |
| 124 |
|
} |
| 125 |
7 |
sb.append(start).append("-").append(end); |
| 126 |
7 |
return sb.toString(); |
| 127 |
|
} |
| 128 |
|
|
| 129 |
|
|
| 130 |
|
|
| 131 |
|
|
| 132 |
|
|
| 133 |
|
|
| |
|
| 83.3% |
Uncovered Elements: 1 (6) |
Complexity: 2 |
Complexity Density: 0.5 |
|
| 134 |
8 |
@Override... |
| 135 |
|
public int hashCode() |
| 136 |
|
{ |
| 137 |
8 |
int hash = sequence == null ? 0 : sequence.hashCode(); |
| 138 |
8 |
hash += 31 * start; |
| 139 |
8 |
hash += 67 * end; |
| 140 |
8 |
return hash; |
| 141 |
|
} |
| 142 |
|
|
| 143 |
|
|
| 144 |
|
|
| 145 |
|
|
| 146 |
|
|
| |
|
| 66.7% |
Uncovered Elements: 2 (6) |
Complexity: 3 |
Complexity Density: 0.75 |
|
| 147 |
143 |
@Override... |
| 148 |
|
public boolean equals(Object obj) |
| 149 |
|
{ |
| 150 |
143 |
if (obj == null || !(obj instanceof SearchResultMatchI)) |
| 151 |
|
{ |
| 152 |
0 |
return false; |
| 153 |
|
} |
| 154 |
143 |
SearchResultMatchI m = (SearchResultMatchI) obj; |
| 155 |
143 |
return (sequence == m.getSequence() && start == m.getStart() |
| 156 |
|
&& end == m.getEnd()); |
| 157 |
|
} |
| 158 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 159 |
50 |
@Override... |
| 160 |
|
public boolean contains(SequenceI seq, int from, int to) |
| 161 |
|
{ |
| 162 |
50 |
return (sequence == seq && start <= from && end >= to); |
| 163 |
|
} |
| 164 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 165 |
21 |
@Override... |
| 166 |
|
public boolean adjacent(SequenceI seq, int from, int to) |
| 167 |
|
{ |
| 168 |
21 |
return (sequence == seq && ((start <= from && end >= to) |
| 169 |
|
|| (from <= (end + 1) && to >= (end + 1)) |
| 170 |
|
|| (from <= (start - 1) && to >= (start - 1)))); |
| 171 |
|
} |
| 172 |
|
|
| |
|
| 0% |
Uncovered Elements: 24 (24) |
Complexity: 7 |
Complexity Density: 0.58 |
|
| 173 |
0 |
@Override... |
| 174 |
|
public int compareTo(SearchResultMatchI o) |
| 175 |
|
{ |
| 176 |
0 |
if (start < o.getStart()) |
| 177 |
|
{ |
| 178 |
0 |
return -1; |
| 179 |
|
} |
| 180 |
0 |
if (start > o.getStart()) |
| 181 |
|
{ |
| 182 |
0 |
return +1; |
| 183 |
|
} |
| 184 |
0 |
if (end < o.getEnd()) |
| 185 |
|
{ |
| 186 |
0 |
return -1; |
| 187 |
|
} |
| 188 |
0 |
if (end > o.getEnd()) |
| 189 |
|
{ |
| 190 |
0 |
return +1; |
| 191 |
|
} |
| 192 |
0 |
if (sequence != o.getSequence()) |
| 193 |
|
{ |
| 194 |
0 |
int hashc = sequence.hashCode(), oseq = o.getSequence().hashCode(); |
| 195 |
0 |
return (hashc < oseq) ? -1 : 1; |
| 196 |
|
} |
| 197 |
0 |
return 0; |
| 198 |
|
} |
| 199 |
|
|
| 200 |
|
} |
| 201 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (7) |
Complexity: 2 |
Complexity Density: 0.4 |
|
| 202 |
261 |
@Override... |
| 203 |
|
public SearchResultMatchI addResult(SequenceI seq, int start, int end) |
| 204 |
|
{ |
| 205 |
261 |
Match m = new Match(seq, start, end); |
| 206 |
261 |
if (!matches.contains(m)) |
| 207 |
|
{ |
| 208 |
259 |
matches.add(m); |
| 209 |
259 |
count++; |
| 210 |
|
} |
| 211 |
261 |
return m; |
| 212 |
|
} |
| 213 |
|
|
| |
|
| 88.9% |
Uncovered Elements: 1 (9) |
Complexity: 3 |
Complexity Density: 0.6 |
|
| 214 |
5 |
@Override... |
| 215 |
|
public void addResult(SequenceI seq, int[] positions) |
| 216 |
|
{ |
| 217 |
|
|
| 218 |
|
|
| 219 |
|
|
| 220 |
|
|
| 221 |
5 |
int beforeCount = count; |
| 222 |
17 |
for (int i = 0; i < positions.length - 1; i += 2) |
| 223 |
|
{ |
| 224 |
12 |
addResult(seq, positions[i], positions[i + 1]); |
| 225 |
|
} |
| 226 |
5 |
if (count > beforeCount) |
| 227 |
|
{ |
| 228 |
5 |
count = beforeCount + 1; |
| 229 |
|
} |
| 230 |
|
} |
| 231 |
|
|
| |
|
| 86.7% |
Uncovered Elements: 4 (30) |
Complexity: 6 |
Complexity Density: 0.27 |
|
| 232 |
9 |
@Override... |
| 233 |
|
public boolean appendResult(SequenceI sequence, int start, int end) |
| 234 |
|
{ |
| 235 |
|
|
| 236 |
9 |
Match m = new Match(sequence, start, end); |
| 237 |
|
|
| 238 |
9 |
boolean appending = false; |
| 239 |
|
|
| 240 |
|
|
| 241 |
|
|
| 242 |
|
|
| 243 |
9 |
int cstart = start, cend = end; |
| 244 |
9 |
List<SearchResultMatchI> toRemove = new ArrayList<>(); |
| 245 |
9 |
for (SearchResultMatchI thatm : matches) |
| 246 |
|
{ |
| 247 |
11 |
if (thatm.getSequence() == sequence) |
| 248 |
|
{ |
| 249 |
7 |
if (thatm.contains(sequence, cstart, cend)) |
| 250 |
|
{ |
| 251 |
|
|
| 252 |
|
|
| 253 |
0 |
return appending; |
| 254 |
|
} |
| 255 |
7 |
if (thatm.adjacent(sequence, cstart, cend)) |
| 256 |
|
{ |
| 257 |
|
|
| 258 |
6 |
start = Math.min(m.start, thatm.getStart()); |
| 259 |
6 |
end = Math.max(m.end, thatm.getEnd()); |
| 260 |
|
|
| 261 |
6 |
if (thatm.getStart() != start || thatm.getEnd() != end) |
| 262 |
|
{ |
| 263 |
6 |
toRemove.add(thatm); |
| 264 |
6 |
count--; |
| 265 |
6 |
cstart = start; |
| 266 |
6 |
cend = end; |
| 267 |
6 |
appending = true; |
| 268 |
|
} |
| 269 |
|
else |
| 270 |
|
{ |
| 271 |
0 |
return false; |
| 272 |
|
} |
| 273 |
|
} |
| 274 |
|
} |
| 275 |
|
} |
| 276 |
9 |
matches.removeAll(toRemove); |
| 277 |
|
{ |
| 278 |
9 |
matches.add(new Match(sequence, cstart, cend)); |
| 279 |
9 |
count++; |
| 280 |
|
} |
| 281 |
9 |
return appending; |
| 282 |
|
} |
| 283 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (10) |
Complexity: 6 |
Complexity Density: 0.75 |
|
| 284 |
47 |
@Override... |
| 285 |
|
public boolean involvesSequence(SequenceI sequence) |
| 286 |
|
{ |
| 287 |
47 |
final int start = sequence.getStart(); |
| 288 |
47 |
final int end = sequence.getEnd(); |
| 289 |
|
|
| 290 |
47 |
SequenceI ds = sequence.getDatasetSequence(); |
| 291 |
47 |
for (SearchResultMatchI m : matches) |
| 292 |
|
{ |
| 293 |
50 |
SequenceI matched = m.getSequence(); |
| 294 |
50 |
if (matched != null && (matched == sequence || matched == ds) |
| 295 |
|
&& (m.getEnd() >= start) && (m.getStart() <= end)) |
| 296 |
|
{ |
| 297 |
14 |
return true; |
| 298 |
|
} |
| 299 |
|
} |
| 300 |
33 |
return false; |
| 301 |
|
} |
| 302 |
|
|
| |
|
| 77.8% |
Uncovered Elements: 10 (45) |
Complexity: 11 |
Complexity Density: 0.38 |
|
| 303 |
72 |
@Override... |
| 304 |
|
public int[] getResults(SequenceI sequence, int start, int end) |
| 305 |
|
{ |
| 306 |
72 |
if (matches.isEmpty()) |
| 307 |
|
{ |
| 308 |
0 |
return null; |
| 309 |
|
} |
| 310 |
|
|
| 311 |
72 |
int[] result = null; |
| 312 |
72 |
int[] tmp = null; |
| 313 |
72 |
int resultLength, matchStart = 0, matchEnd = 0; |
| 314 |
72 |
boolean mfound; |
| 315 |
72 |
Match m; |
| 316 |
72 |
for (SearchResultMatchI _m : matches) |
| 317 |
|
{ |
| 318 |
112 |
m = (Match) _m; |
| 319 |
|
|
| 320 |
112 |
mfound = false; |
| 321 |
112 |
if (m.sequence == sequence |
| 322 |
|
|| m.sequence == sequence.getDatasetSequence()) |
| 323 |
|
{ |
| 324 |
34 |
mfound = true; |
| 325 |
34 |
matchStart = sequence.findIndex(m.start) - 1; |
| 326 |
34 |
matchEnd = m.start == m.end ? matchStart |
| 327 |
|
: sequence.findIndex(m.end) - 1; |
| 328 |
|
} |
| 329 |
|
|
| 330 |
112 |
if (mfound) |
| 331 |
|
{ |
| 332 |
34 |
if (matchStart <= end && matchEnd >= start) |
| 333 |
|
{ |
| 334 |
34 |
if (matchStart < start) |
| 335 |
|
{ |
| 336 |
1 |
matchStart = start; |
| 337 |
|
} |
| 338 |
|
|
| 339 |
34 |
if (matchEnd > end) |
| 340 |
|
{ |
| 341 |
1 |
matchEnd = end; |
| 342 |
|
} |
| 343 |
|
|
| 344 |
34 |
if (result == null) |
| 345 |
|
{ |
| 346 |
34 |
result = new int[] { matchStart, matchEnd }; |
| 347 |
|
} |
| 348 |
|
else |
| 349 |
|
{ |
| 350 |
0 |
resultLength = result.length; |
| 351 |
0 |
tmp = new int[resultLength + 2]; |
| 352 |
0 |
System.arraycopy(result, 0, tmp, 0, resultLength); |
| 353 |
0 |
result = tmp; |
| 354 |
0 |
result[resultLength] = matchStart; |
| 355 |
0 |
result[resultLength + 1] = matchEnd; |
| 356 |
|
} |
| 357 |
|
} |
| 358 |
|
else |
| 359 |
|
{ |
| 360 |
|
|
| 361 |
|
|
| 362 |
|
|
| 363 |
|
|
| 364 |
|
} |
| 365 |
|
} |
| 366 |
|
} |
| 367 |
72 |
return result; |
| 368 |
|
} |
| 369 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (18) |
Complexity: 3 |
Complexity Density: 0.21 |
|
| 370 |
8 |
@Override... |
| 371 |
|
public int markColumns(SequenceCollectionI sqcol, BitSet bs) |
| 372 |
|
{ |
| 373 |
8 |
int count = 0; |
| 374 |
8 |
BitSet mask = new BitSet(); |
| 375 |
8 |
int startRes = sqcol.getStartRes(); |
| 376 |
8 |
int endRes = sqcol.getEndRes(); |
| 377 |
|
|
| 378 |
8 |
for (SequenceI s : sqcol.getSequences()) |
| 379 |
|
{ |
| 380 |
27 |
int[] cols = getResults(s, startRes, endRes); |
| 381 |
27 |
if (cols != null) |
| 382 |
|
{ |
| 383 |
24 |
for (int pair = 0; pair < cols.length; pair += 2) |
| 384 |
|
{ |
| 385 |
12 |
mask.set(cols[pair], cols[pair + 1] + 1); |
| 386 |
|
} |
| 387 |
|
} |
| 388 |
|
} |
| 389 |
|
|
| 390 |
8 |
BitSet original = (BitSet) bs.clone(); |
| 391 |
8 |
original.and(mask); |
| 392 |
8 |
count = mask.cardinality() - original.cardinality(); |
| 393 |
|
|
| 394 |
8 |
bs.or(mask); |
| 395 |
8 |
return count; |
| 396 |
|
} |
| 397 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 398 |
49 |
@Override... |
| 399 |
|
public int getCount() |
| 400 |
|
{ |
| 401 |
49 |
return count; |
| 402 |
|
} |
| 403 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 404 |
683 |
@Override... |
| 405 |
|
public boolean isEmpty() |
| 406 |
|
{ |
| 407 |
683 |
return matches.isEmpty(); |
| 408 |
|
} |
| 409 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 410 |
306 |
@Override... |
| 411 |
|
public List<SearchResultMatchI> getResults() |
| 412 |
|
{ |
| 413 |
306 |
return matches; |
| 414 |
|
} |
| 415 |
|
|
| 416 |
|
|
| 417 |
|
|
| 418 |
|
|
| 419 |
|
@return |
| 420 |
|
|
| |
|
| 66.7% |
Uncovered Elements: 1 (3) |
Complexity: 2 |
Complexity Density: 2 |
|
| 421 |
3 |
@Override... |
| 422 |
|
public String toString() |
| 423 |
|
{ |
| 424 |
3 |
return matches == null ? "" : matches.toString(); |
| 425 |
|
} |
| 426 |
|
|
| 427 |
|
|
| 428 |
|
|
| 429 |
|
|
| 430 |
|
|
| 431 |
|
|
| 432 |
|
@see |
| 433 |
|
@see |
| 434 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 435 |
6 |
@Override... |
| 436 |
|
public int hashCode() |
| 437 |
|
{ |
| 438 |
6 |
return matches.hashCode(); |
| 439 |
|
} |
| 440 |
|
|
| 441 |
|
|
| 442 |
|
|
| 443 |
|
|
| 444 |
|
|
| 445 |
|
@see |
| 446 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (6) |
Complexity: 3 |
Complexity Density: 0.75 |
|
| 447 |
39 |
@Override... |
| 448 |
|
public boolean equals(Object obj) |
| 449 |
|
{ |
| 450 |
39 |
if (obj == null || !(obj instanceof SearchResultsI)) |
| 451 |
|
{ |
| 452 |
5 |
return false; |
| 453 |
|
} |
| 454 |
34 |
SearchResultsI sr = (SearchResultsI) obj; |
| 455 |
34 |
return matches.equals(sr.getResults()); |
| 456 |
|
} |
| 457 |
|
|
| |
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 458 |
0 |
@Override... |
| 459 |
|
public void addSearchResults(SearchResultsI toAdd) |
| 460 |
|
{ |
| 461 |
0 |
matches.addAll(toAdd.getResults()); |
| 462 |
|
} |
| 463 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (9) |
Complexity: 2 |
Complexity Density: 0.29 |
|
| 464 |
8 |
@Override... |
| 465 |
|
public List<SequenceI> getMatchingSubSequences() |
| 466 |
|
{ |
| 467 |
8 |
List<SequenceI> seqs = new ArrayList<>(); |
| 468 |
|
|
| 469 |
|
|
| 470 |
|
|
| 471 |
|
|
| 472 |
|
|
| 473 |
8 |
for (SearchResultMatchI match : matches) |
| 474 |
|
{ |
| 475 |
12 |
SequenceI seq = match.getSequence(); |
| 476 |
18 |
while (seq.getDatasetSequence() != null) |
| 477 |
|
{ |
| 478 |
6 |
seq = seq.getDatasetSequence(); |
| 479 |
|
} |
| 480 |
|
|
| 481 |
12 |
seqs.add(seq.getSubSequence(seq.findIndex(match.getStart()) - 1, |
| 482 |
|
seq.findIndex(match.getEnd()))); |
| 483 |
|
} |
| 484 |
8 |
return seqs; |
| 485 |
|
} |
| 486 |
|
|
| 487 |
|
} |