// look for non-pos features
StringBuffer tooltiptext = new StringBuffer();
-
- if (sequence.getDescription() != null)
+ if (sequence != null)
{
- tooltiptext.append(sequence.getDescription());
- tooltiptext.append("\n");
- }
+ if (sequence.getDescription() != null)
+ {
+ tooltiptext.append(sequence.getDescription());
+ tooltiptext.append("\n");
+ }
- SequenceFeature sf[] = sequence.getSequenceFeatures();
- for (int sl = 0; sf != null && sl < sf.length; sl++)
- {
- if (sf[sl].begin == sf[sl].end && sf[sl].begin == 0)
+ SequenceFeature sf[] = sequence.getSequenceFeatures();
+ for (int sl = 0; sf != null && sl < sf.length; sl++)
{
- boolean nl = false;
- if (sf[sl].getFeatureGroup() != null)
- {
- tooltiptext.append(sf[sl].getFeatureGroup());
- nl = true;
- }
- ;
- if (sf[sl].getType() != null)
- {
- tooltiptext.append(" ");
- tooltiptext.append(sf[sl].getType());
- nl = true;
- }
- ;
- if (sf[sl].getDescription() != null)
- {
- tooltiptext.append(" ");
- tooltiptext.append(sf[sl].getDescription());
- nl = true;
- }
- ;
- if (sf[sl].getScore() != Float.NaN && sf[sl].getScore() != 0f)
- {
- tooltiptext.append(" Score = ");
- tooltiptext.append(sf[sl].getScore());
- nl = true;
- }
- ;
- if (sf[sl].getStatus() != null && sf[sl].getStatus().length() > 0)
- {
- tooltiptext.append(" (");
- tooltiptext.append(sf[sl].getStatus());
- tooltiptext.append(")");
- nl = true;
- }
- ;
- if (nl)
+ if (sf[sl].begin == sf[sl].end && sf[sl].begin == 0)
{
- tooltiptext.append("\n");
+ boolean nl = false;
+ if (sf[sl].getFeatureGroup() != null)
+ {
+ tooltiptext.append(sf[sl].getFeatureGroup());
+ nl = true;
+ }
+ ;
+ if (sf[sl].getType() != null)
+ {
+ tooltiptext.append(" ");
+ tooltiptext.append(sf[sl].getType());
+ nl = true;
+ }
+ ;
+ if (sf[sl].getDescription() != null)
+ {
+ tooltiptext.append(" ");
+ tooltiptext.append(sf[sl].getDescription());
+ nl = true;
+ }
+ ;
+ if (sf[sl].getScore() != Float.NaN && sf[sl].getScore() != 0f)
+ {
+ tooltiptext.append(" Score = ");
+ tooltiptext.append(sf[sl].getScore());
+ nl = true;
+ }
+ ;
+ if (sf[sl].getStatus() != null && sf[sl].getStatus().length() > 0)
+ {
+ tooltiptext.append(" (");
+ tooltiptext.append(sf[sl].getStatus());
+ tooltiptext.append(")");
+ nl = true;
+ }
+ ;
+ if (nl)
+ {
+ tooltiptext.append("\n");
+ }
}
}
}
-
if (tooltiptext.length() == 0)
{
// nothing to display - so clear tooltip if one is visible
// DEFAULT LINK IS FIRST IN THE LINK LIST
int seq = alignPanel.seqPanel.findSeq(e);
- String id = av.getAlignment().getSequenceAt(seq).getName();
+ SequenceI sq = av.getAlignment().getSequenceAt(seq);
+ if (sq==null)
+ {
+ return;
+ }
+ String id = sq.getName();
String target = null;
String url = null;
if ((e.getModifiers() & InputEvent.BUTTON3_MASK) == InputEvent.BUTTON3_MASK)
{
Sequence sq = (Sequence) av.getAlignment().getSequenceAt(seq);
+
// build a new links menu based on the current links + any non-positional
// features
Vector nlinks = new Vector();
{
nlinks.addElement(links.elementAt(l));
}
- SequenceFeature sf[] = sq.getSequenceFeatures();
+ SequenceFeature sf[] = sq==null ? null:sq.getSequenceFeatures();
for (int sl = 0; sf != null && sl < sf.length; sl++)
{
if (sf[sl].begin == sf[sl].end && sf[sl].begin == 0)
end = tmp;
lastid = end;
}
- if (av.getSelectionGroup()==null)
+ if (av.getSelectionGroup() == null)
{
av.setSelectionGroup(new SequenceGroup());
}
e.printStackTrace();
}
+ JMenuItem menuItem;
if (seq != null)
{
sequenceMenu.setText(sequence.getName());
- JMenuItem menuItem;
if (seq.getDatasetSequence().getPDBId() != null
&& seq.getDatasetSequence().getPDBId().size() > 0)
{
});
add(menuItem);
}
-
+ }
+ }
+ // for the case when no sequences are even visible
+ if (ap.av.hasHiddenRows) {
+ {
menuItem = new JMenuItem("Reveal All");
menuItem.addActionListener(new ActionListener()
{
SequenceGroup sg = ap.av.getSelectionGroup();
- if (sg != null)
+ if (sg != null&& sg.getSize()>0)
{
groupName.setText("Name: "+sg.getName());
groupName.setText("Edit name and description of current group.");
structureMenu.setVisible(false);
}
- if (links != null && links.size() > 0)
+ if (seq !=null && links != null && links.size() > 0)
{
JMenu linkMenu = new JMenu("Link");