If any of the GT is non missing return true. @param gt GT to check @return true if gt is not entirely should be skipped, false otherwise
(int[] gt)
| 411 | * @return true if gt is not entirely should be skipped, false otherwise |
| 412 | */ |
| 413 | public static boolean isNonMissingGt(int[] gt) { |
| 414 | for (final int g : gt) { |
| 415 | if (g > MISSING_GT) { |
| 416 | return true; |
| 417 | } |
| 418 | } |
| 419 | return false; |
| 420 | } |
| 421 | |
| 422 | /** |
| 423 | * If any of the GT is non missing return true. |