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

extra check for GTF

parent 99987903
Branches
Tags
No related merge requests found
...@@ -1350,6 +1350,9 @@ public class GFFStreamFeature extends SimpleDocumentFeature ...@@ -1350,6 +1350,9 @@ public class GFFStreamFeature extends SimpleDocumentFeature
protected static boolean isGTF(Feature feature) protected static boolean isGTF(Feature feature)
{ {
if(!(feature instanceof GFFStreamFeature))
return false;
final String names[] = { "ID", "Name", "Alias", "Parent", final String names[] = { "ID", "Name", "Alias", "Parent",
"Derives_from", "Derives_from",
"Target", "Gap", "Note", "Target", "Gap", "Note",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment