Skip to content
Snippets Groups Projects
Commit 35125912 authored by tcarver's avatar tcarver
Browse files

fix for VCF file parse()

parent a778542b
Branches
Tags
No related merge requests found
......@@ -95,7 +95,7 @@ public class VCFRecord
rec.filter = parts[6];
rec.info = parts[7];
if(parts.length > 10)
if(parts.length > 9)
{
rec.format = (parts[8]).trim();
final int nfmt = countOccurrences(rec.format, ':')+1; //rec.format.split(":").length;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment