Skip to content
Snippets Groups Projects
Commit 847d4b24 authored by tcarver's avatar tcarver
Browse files

ignore codon_start when writing out

parent aaf353b3
No related branches found
No related tags found
No related merge requests found
......@@ -754,10 +754,11 @@ public class GFFStreamFeature extends SimpleDocumentFeature implements
continue;
// skip internal qualifiers
if ((this_qualifier.getName().equals("private") && System
.getProperty("noprivate") != null)
|| (this_qualifier.getName().equals("history") && System
.getProperty("nohistory") != null))
if ( (this_qualifier.getName().equals("private") &&
System.getProperty("noprivate") != null) ||
(this_qualifier.getName().equals("history") &&
System.getProperty("nohistory") != null) ||
this_qualifier.getName().equals("codon_start"))
continue;
abuf.add(this_qualifier.getName(), this_qualifier.getValues());
......
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