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
I was getting an error and noticed that it crashes when there are genotypes in the vcf file that are phased (0|0 instead of 0/0). So I just modified line 138 to :
From a user contacting us:
I was getting an error and noticed that it crashes when there are genotypes in the vcf file that are phased (0|0 instead of 0/0). So I just modified line 138 to :
focal_genotype = re.split(r"/||", row[samplename])
and imported re at the beginning of the script:
import re
The text was updated successfully, but these errors were encountered: