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

extra check for GTF

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