You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For a vcf file containing data for multiple individuals per line, the the vcf on data event returns correct individual names, but the data for each individual is a duplicate of the first individual's data.
To fix this issue, change line 89 in index.js from this:
var formatParts = info[9].split(':')
to this:
var formatParts = info[9 + j].split(':')
The for loop simply needs to loop to each unique individual in each line.
The text was updated successfully, but these errors were encountered:
For a vcf file containing data for multiple individuals per line, the the vcf on data event returns correct individual names, but the data for each individual is a duplicate of the first individual's data.
To fix this issue, change line 89 in index.js from this:
var formatParts = info[9].split(':')
to this:
var formatParts = info[9 + j].split(':')
The for loop simply needs to loop to each unique individual in each line.
The text was updated successfully, but these errors were encountered: