Skip to content

Commit 116d563

Browse files
committed
Bugfix to ExtendedVcfFeature when input lacks ANN field
1 parent 6643d71 commit 116d563

File tree

1 file changed

+1
-1
lines changed
  • jbrowse/src/client/JBrowse/Browser/plugins/ExtendedVariantPlugin/ExtendedVariantAdapter

1 file changed

+1
-1
lines changed

jbrowse/src/client/JBrowse/Browser/plugins/ExtendedVariantPlugin/ExtendedVariantAdapter/VcfFeature.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export default class ExtendedVcfFeature extends VcfFeature {
1616
ID: string[]
1717
}) {
1818
if (!variant.INFO["ANN"]) {
19-
return;
19+
return(variant);
2020
}
2121

2222
let IMPACTs = new Set<String>()

0 commit comments

Comments
 (0)