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

change isFminPartial / isFmaxPartial to Start_range / End_range

parent 4c60c5e2
No related branches found
No related tags found
No related merge requests found
......@@ -111,8 +111,6 @@ public class FeatureList extends EntryGroupPanel
/** JScrollPane viewport that this panel is the view of */
private JViewport viewport = null;
private boolean isDatabaseGroup = false;
/**
* Create a new FeatureList with the default number of rows.
* @param entry_group The EntryGroup that this component will display.
......@@ -128,8 +126,6 @@ public class FeatureList extends EntryGroupPanel
{
super(entry_group, selection, goto_event_source, base_plot_group);
isDatabaseGroup = GeneUtils.isDatabaseEntry(getEntryGroup());
addMouseListener(new MouseAdapter()
{
private FeaturePopup popup = null;
......@@ -760,7 +756,7 @@ public class FeatureList extends EntryGroupPanel
else
{
String note = null;
if(isDatabaseGroup)
if(feature.getEmblFeature() instanceof GFFStreamFeature)
{
try
{
......@@ -813,14 +809,13 @@ public class FeatureList extends EntryGroupPanel
}
}
if(isDatabaseGroup)
if(feature.getEmblFeature() instanceof GFFStreamFeature)
{
try
{
if(feature.getQualifierByName("isFminPartial") != null)
if(feature.getQualifierByName("Start_range") != null)
low_pos = "<"+low_pos;
if(feature.getQualifierByName("isFmaxPartial") != null)
if(feature.getQualifierByName("End_range") != null)
high_pos = ">"+high_pos;
}
catch (InvalidRelationException e){}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment