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

ignore UTRs with no ID

parent 6d777134
No related branches found
No related tags found
No related merge requests found
......@@ -181,6 +181,8 @@ public class GeneComponentTree extends JTree
for(int j=0; j<utrs.size(); j++)
{
Feature utr = (Feature)utrs.get(j);
if(utr.getQualifierByName("ID") == null)
continue;
String utr_id = (String)utr.getQualifierByName("ID").getValues().get(0);
transcript_node.add(new DefaultMutableTreeNode(utr_id));
}
......
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