Skip to content

Commit 18431ea

Browse files
committed
Support single-dot genotype
1 parent 0ed18cf commit 18431ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jbrowse/src/client/JBrowse/Browser/plugins/ExtendedVariantPlugin/ExtendedVariantWidget/ExtendedVariantWidget.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ export default jbrowse => {
208208
const gt = samples[sample]["GT"]
209209
for (let genotype of gt){
210210
const nc = "No Call"
211-
if (genotype === "./." || genotype === ".|."){
211+
if (genotype === "./." || genotype === ".|." || genotype === '.'){
212212
gtCounts[nc] = gtCounts[nc] ? gtCounts[nc] + 1 : 1
213213
gtTotal = gtTotal + 1
214214
}

0 commit comments

Comments
 (0)