If all sub-alleles of the GT is missing return true. @param gt GT to check @return true if gt should be skipped, false otherwise
(int[] gt)
| 446 | * @return true if gt should be skipped, false otherwise |
| 447 | */ |
| 448 | public static boolean isMissingGt(int[] gt) { |
| 449 | return !isNonMissingGt(gt); |
| 450 | } |
| 451 | |
| 452 | /** |
| 453 | * If all sub-alleles of the GT is missing return true. |
no test coverage detected