Returns the VCF header for given file. @param input file to read VCF header from @return The VcfHeader @throws IOException if an I/O error occurs
(final File input)
| 465 | * @throws IOException if an I/O error occurs |
| 466 | */ |
| 467 | public static VcfHeader getHeader(final File input) throws IOException { |
| 468 | return new VcfParser().parseHeader(input); |
| 469 | } |
| 470 | |
| 471 | /** |
| 472 | * Normalize by converting any DNA characters within a VCF allele into uppercase. Annoyingly, |