Turn a line of VCF output into a VcfRecord @param line line of file @return the corresponding record
(String line)
| 115 | * @return the corresponding record |
| 116 | */ |
| 117 | public VcfRecord parseLine(String line) { |
| 118 | return parseFields(StringUtils.split(line, '\t')); |
| 119 | } |
| 120 | |
| 121 | /** |
| 122 | * Turn a line of <code>VCF</code> output into a {@link VcfRecord} |
no test coverage detected