Skip to content
Snippets Groups Projects
SelectMenu.java 26 KiB
Newer Older
  • Learn to ignore specific revisions
  • tjc's avatar
    tjc committed
    1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827
    /* SelectMenu.java
     *
     * created: Thu Jan 14 1999
     *
     * This file is part of Artemis
     *
     * Copyright (C) 1998,1999,2000  Genome Research Limited
     *
     * This program is free software; you can redistribute it and/or
     * modify it under the terms of the GNU General Public License
     * as published by the Free Software Foundation; either version 2
     * of the License, or (at your option) any later version.
     *
     * This program is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     * GNU General Public License for more details.
     *
     * You should have received a copy of the GNU General Public License
     * along with this program; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
     *
     * $Header: //tmp/pathsoft/artemis/uk/ac/sanger/artemis/components/SelectMenu.java,v 1.1 2004-06-09 09:47:37 tjc Exp $
     **/
    
    package uk.ac.sanger.artemis.components;
    
    import uk.ac.sanger.artemis.*;
    import uk.ac.sanger.artemis.sequence.*;
    
    import uk.ac.sanger.artemis.util.OutOfRangeException;
    import uk.ac.sanger.artemis.util.StringVector;
    import uk.ac.sanger.artemis.io.Range;
    import uk.ac.sanger.artemis.io.Key;
    import uk.ac.sanger.artemis.io.KeyVector;
    import uk.ac.sanger.artemis.io.Qualifier;
    import uk.ac.sanger.artemis.io.InvalidKeyException;
    import uk.ac.sanger.artemis.io.InvalidRelationException;
    import uk.ac.sanger.artemis.io.EntryInformation;
    
    import java.awt.*;
    import java.awt.event.*;
    
    import javax.swing.*;
    
    /**
     *  This menu has contains items such a "Select all", "Select none" and
     *  "Select by key".
     *
     *  @author Kim Rutherford
     *  @version $Id: SelectMenu.java,v 1.1 2004-06-09 09:47:37 tjc Exp $
     **/
    
    public class SelectMenu extends SelectionMenu {
      /**
       *  Create a new SelectMenu object and all it's menu items.
       *  @param frame The JFrame that owns this JMenu.
       *  @param selection The Selection that the commands in the menu will
       *    operate on.
       *  @param goto_event_source The object the we will call makeBaseVisible ()
       *    on.
       *  @param entry_group The EntryGroup object where features and exons are
       *    selected from.
       *  @param base_plot_group The BasePlotGroup associated with this JMenu -
       *    needed to call getCodonUsageAlgorithm()
       *  @param menu_name The name of the new menu.
       **/
      public SelectMenu (final JFrame frame,
                         final Selection selection,
                         final GotoEventSource goto_event_source,
                         final EntryGroup entry_group,
                         final BasePlotGroup base_plot_group,
                         final String menu_name) {
        super (frame, menu_name, selection);
    
        this.entry_group = entry_group;
        this.goto_event_source = goto_event_source;
    
        selector_item = new JMenuItem ("Feature Selector ...");
        selector_item.addActionListener (new ActionListener () {
          public void actionPerformed (ActionEvent event) {
            new Selector (selection, goto_event_source, getEntryGroup (),
                          base_plot_group);
          }
        });
    
        add (selector_item);
    
        addSeparator ();
    
        all_item = new JMenuItem ("All");
        all_item.setAccelerator (SELECT_ALL_KEY);
        all_item.addActionListener (new ActionListener () {
          public void actionPerformed (ActionEvent event) {
            selectAll ();
          }
        });
    
        add (all_item);
    
        all_bases_item = new JMenuItem ("All Bases");
        all_bases_item.addActionListener (new ActionListener () {
          public void actionPerformed (ActionEvent event) {
            selectAllBases ();
          }
        });
    
        add (all_bases_item);
    
        none_item = new JMenuItem ("None");
        none_item.setAccelerator (SELECT_NONE_KEY);
        none_item.addActionListener (new ActionListener () {
          public void actionPerformed (ActionEvent event) {
            clearSelection ();
          }
        });
    
        add (none_item);
    
        select_by_key_item = new JMenuItem ("By Key");
        select_by_key_item.addActionListener (new ActionListener () {
          public void actionPerformed (ActionEvent event) {
            selectByKeyPopup ();
          }
        });
    
        add (select_by_key_item);
    
        select_non_pseudo_cds_item =
          new JMenuItem ("CDS Features without /pseudo");
        select_non_pseudo_cds_item.addActionListener (new ActionListener () {
          public void actionPerformed (ActionEvent event) {
            // select all CDS features that do not have the /pseudo qualifier
            final FeatureKeyQualifierPredicate predicate =
              new FeatureKeyQualifierPredicate (Key.CDS, "pseudo", false);
    
            clearSelection ();
    
            selectFeaturesByPredicate (predicate);
          }
        });
    
        add (select_non_pseudo_cds_item);
    
        select_all_cds_item = new JMenuItem ("All CDS Features");
        select_all_cds_item.addActionListener (new ActionListener () {
          public void actionPerformed (ActionEvent event) {
            final FeatureKeyPredicate predicate =
              new FeatureKeyPredicate (Key.CDS);
    
            clearSelection ();
    
            selectFeaturesByPredicate (predicate);
          }
        });
    
        add (select_all_cds_item);
    
        select_same_type_item = new JMenuItem ("Same Key");
        select_same_type_item.addActionListener (new ActionListener () {
          public void actionPerformed (ActionEvent event) {
            selectSameKey ();
          }
        });
    
        add (select_same_type_item);
    
        select_matching_qualifiers_item =
          new JMenuItem ("Features Matching Qualifier");
        select_matching_qualifiers_item.addActionListener (new ActionListener () {
          public void actionPerformed (ActionEvent event) {
            selectMatchingQualifiers ();
          }
        });
    
        add (select_matching_qualifiers_item);
    
        select_orf_item = new JMenuItem ("Open Reading Frame");
        select_orf_item.addActionListener (new ActionListener () {
          public void actionPerformed (ActionEvent event) {
            selectOrf ();
          }
        });
    
        add (select_orf_item);
    
        select_features_in_range_item =
          new JMenuItem ("Features Overlapping Selection");
        select_features_in_range_item.addActionListener (new ActionListener () {
          public void actionPerformed (ActionEvent event) {
            selectOverlappingFeatures ();
          }
        });
    
        add (select_features_in_range_item);
    
        select_base_range_item = new JMenuItem ("Base Range ...");
        select_base_range_item.addActionListener (new ActionListener () {
          public void actionPerformed (ActionEvent event) {
            selectBaseRange ();
          }
        });
    
        add (select_base_range_item);
    
        select_aa_range_in_feature_item = new JMenuItem ("Feature AA Range ...");
        select_aa_range_in_feature_item.addActionListener (new ActionListener () {
          public void actionPerformed (ActionEvent event) {
            selectFeatureAARange ();
          }
        });
    
        add (select_aa_range_in_feature_item);
    
        addSeparator ();
    
        selection_toggle_item = new JMenuItem ("Toggle Selection");
        selection_toggle_item.addActionListener (new ActionListener () {
          public void actionPerformed (ActionEvent event) {
            toggleSelection ();
          }
        });
    
        add (selection_toggle_item);
      }
    
      /**
       *  The shortcut for Select All
       **/
      final static KeyStroke SELECT_ALL_KEY =
        KeyStroke.getKeyStroke (KeyEvent.VK_A, InputEvent.CTRL_MASK);
    
      /**
       *  The shortcut for Select None
       **/
      final static KeyStroke SELECT_NONE_KEY =
        KeyStroke.getKeyStroke (KeyEvent.VK_N, InputEvent.CTRL_MASK);
    
      /**
       *  Create a new SelectMenu object and all it's menu items.
       *  @param frame The JFrame that owns this JMenu.
       *  @param selection The Selection that the commands in the menu will
       *    operate on.
       *  @param goto_event_source The object the we will call makeBaseVisible ()
       *    on.
       *  @param entry_group The EntryGroup object where features and exons are
       *    selected from.
       *  @param base_plot_group The BasePlotGroup associated with this JMenu -
       *    needed to call getCodonUsageAlgorithm()
       **/
      public SelectMenu (final JFrame frame,
                         final Selection selection,
                         final GotoEventSource goto_event_source,
                         final EntryGroup entry_group,
                         final BasePlotGroup base_plot_group) {
        this (frame, selection, goto_event_source, entry_group,
              base_plot_group, "Select");
      }
    
      /**
       *  Warn if the user tries to select more than this number of features.
       **/
      final private int MAX_FEATURE_TO_SELECT_COUNT = 10000;
    
      /**
       *  Select all the features in the active entries.  If there are more than
       *  1000 features the user is asked for confirmation.
       **/
      private void selectAll () {
        if (getEntryGroup ().getAllFeaturesCount () >
            MAX_FEATURE_TO_SELECT_COUNT) {
          final YesNoDialog dialog =
            new YesNoDialog (getParentFrame (),
                             "Are you sure you want to select " +
                              getEntryGroup ().getAllFeaturesCount () +
                             " features?");
    
          if (!dialog.getResult ()) {
            return;
          }
        }
    
        final FeatureVector all_features = getEntryGroup ().getAllFeatures ();
    
        if (getEntryGroup () instanceof SimpleEntryGroup) {
          // special case for speed
          getSelection ().set (all_features);
        } else {
          clearSelection ();
    
          getSelection ().add (all_features);
        }
      }
    
      /**
       *  Select all the bases.
       **/
      private void selectAllBases () {
        try {
          final Strand strand = getEntryGroup ().getBases ().getForwardStrand ();
    
          final MarkerRange new_range =
            strand.makeMarkerRangeFromPositions (1, strand.getSequenceLength ());
    
          getSelection ().setMarkerRange (new_range);
        } catch (OutOfRangeException e) {
          throw new Error ("internal error - unexpected exception: " + e);
        }
      }
    
      /**
       *  Remove the all Features and FeatureSegments in the EntryGroup from the
       *  Selection.  If the current EntryGroup is a SimpleEntryGroup then this
       *  method just calls getSelection ().clear ();
       **/
      private void clearSelection () {
        if (getEntryGroup () instanceof SimpleEntryGroup) {
          // special case for speed
          getSelection ().clear ();
        } else {
          getSelection ().setMarkerRange (null);
    
          final FeatureEnumeration test_enumerator = getEntryGroup ().features ();
    
          while (test_enumerator.hasMoreFeatures ()) {
            final Feature this_feature = test_enumerator.nextFeature ();
    
            getSelection ().remove (this_feature);
            getSelection ().removeSegmentsOf (this_feature);
          }
        }
      }
    
      /**
       *  Invert the selection - after calling this method the selection will
       *  contain only those features that were not in the selection before the
       *  call.
       **/
      private void toggleSelection () {
        final FeatureVector selected_features = getSelection ().getAllFeatures ();
    
        final FeatureVector all_features = getEntryGroup ().getAllFeatures ();
    
        final FeatureVector new_selection = new FeatureVector ();
    
        for (int i = 0 ; i < all_features.size () ; ++i) {
          final Feature this_feature = all_features.elementAt (i);
    
          if (!selected_features.contains (this_feature)) {
            new_selection.add (this_feature);
          }
        }
    
        clearSelection ();
    
        getSelection ().add (new_selection);
      }
    
    
      /**
       *  Popup a TextRequester component and then select all the features that
       *  have the same key as the user types.
       **/
      private void selectByKeyPopup () {
        final KeyChooser key_chooser;
    
        final EntryInformation default_entry_information =
          Options.getArtemisEntryInformation ();
    
        key_chooser = new KeyChooser (default_entry_information,
                                      new Key ("misc_feature"));
    
        key_chooser.getKeyChoice ().addItemListener (new ItemListener () {
          public void itemStateChanged (ItemEvent _) {
            selectByKey (key_chooser.getKeyChoice ().getSelectedItem ());
            key_chooser.setVisible (false);
            key_chooser.dispose ();
          }
        });
    
        key_chooser.getOKButton ().addActionListener (new ActionListener () {
          public void actionPerformed (ActionEvent _) {
            selectByKey (key_chooser.getKeyChoice ().getSelectedItem ());
            key_chooser.setVisible (false);
            key_chooser.dispose ();
          }
        });
    
        key_chooser.setVisible (true);
      }
    
      /**
       *  Select all the features that have the given key.
       **/
      private void selectByKey (final Key key) {
        final FeaturePredicate predicate = new FeatureKeyPredicate (key);
    
        selectFeaturesByPredicate (predicate);
      }
    
      /**
       *  Select all the features that have the given key and contains a qualifier
       *  with the given name and value.
       *  If key is null select any feature with the contains a qualifier with the
       *  given name and value.
       **/
      private void selectByQualifier (final Key key,
                                      final String name, final String value) {
        final FeaturePredicate predicate =
          new FeatureKeyQualifierPredicate (key, name, value);
    
        selectFeaturesByPredicate (predicate);
      }
    
      /**
       *  Select all the features that have the same key as the currently selected
       *  features.
       **/
      private void selectSameKey () {
        if (! checkForSelectionFeatures ()) {
          return;
        }
    
        final KeyVector seen_keys = new KeyVector ();
    
        final FeatureVector selected_features = getSelection ().getAllFeatures ();
    
        for (int i = 0 ; i < selected_features.size () ; ++i) {
          final Feature current_feature = selected_features.elementAt (i);
    
          if (!seen_keys.contains (current_feature.getKey ())) {
            seen_keys.add (current_feature.getKey ());
          }
        }
    
        clearSelection ();
    
        for (int i = 0 ; i < seen_keys.size () ; ++i) {
          selectByKey (seen_keys.elementAt (i));
        }
      }
    
      /**
       *  Ask the user for a qualifier name, list all of the qualifier with that
       *  name in the currently selected feature then select all features that
       *  have that name and qualifier.
       **/
      private void selectMatchingQualifiers () {
        if (!checkForSelectionFeatures (getParentFrame (), getSelection ())) {
          return;
        }
    
        final FeatureVector selected_features = getSelection ().getAllFeatures ();
    
        if (selected_features.size () > 1) {
          new MessageDialog (getParentFrame (), "select only one feature");
          return;
        }
    
        final Feature selected_feature = selected_features.elementAt (0);
    
        final StringVector qualifier_names =
          Feature.getAllQualifierNames (selected_features);
    
        if (qualifier_names.size () == 0) {
          new MessageDialog (getParentFrame (), "feature has no qualifiers");
          return;
        }
    
        final ChoiceFrame name_choice_frame =
          new ChoiceFrame ("Select a qualifier name ...", qualifier_names);
    
        final JComboBox name_choice = name_choice_frame.getChoice ();
    
        class SelectListener implements ActionListener, ItemListener {
          public void doStuff () {
            selectMatchingQualifiersHelper (selected_feature,
                                            (String) name_choice.getSelectedItem ());
            name_choice_frame.setVisible (false);
            name_choice_frame.dispose ();
          }
    
          public void itemStateChanged (ItemEvent _) {
            doStuff ();
            // need to remove() because itemStateChanged() is called twice on the
            // Tru64 1.4.1 JVM
            name_choice.removeItemListener (this);
          }
    
          public void actionPerformed (ActionEvent _) {
            doStuff ();
            name_choice_frame.getOKButton ().removeActionListener (this);
          }
        };
    
        final SelectListener listener = new SelectListener ();
    
        name_choice.addItemListener (listener);
        name_choice_frame.getOKButton ().addActionListener (listener);
    
        name_choice_frame.setVisible (true);
      }
    
      /**
       *  Pop up a list of the values of the qualifiers with the given name in the
       *  given feature then select all features that have a qualifier with the
       *  same and value.
       **/
      private void selectMatchingQualifiersHelper (final Feature feature,
                                                   final String name) {
        final Qualifier qualifier;
    
        try {
          qualifier = feature.getQualifierByName (name);
        } catch (InvalidRelationException e) {
          throw new Error ("internal error - unexpected exception: " + e);
        }
    
        if (qualifier == null) {
          throw new Error ("internal error - unexpected null reference");
        }
    
        final StringVector qualifier_values = qualifier.getValues ();
    
        if (qualifier_values.size () == 0) {
          new MessageDialog (getParentFrame (),
                             "qualifier " + name + " has no values in ");
          return;
        }
    
        if (qualifier_values.size () == 1) {
          selectByQualifier (null, name, qualifier_values.elementAt (0));
        } else {
          final ChoiceFrame value_choice_frame =
            new ChoiceFrame ("Select a qualifier value", qualifier_values);
    
          final JComboBox value_choice = value_choice_frame.getChoice ();
    
          value_choice.addItemListener (new ItemListener () {
            public void itemStateChanged (ItemEvent _) {
              selectByQualifier (null, name,
                                 (String) value_choice.getSelectedItem ());
              value_choice_frame.setVisible (false);
              value_choice_frame.dispose ();
            }
          });
    
          value_choice_frame.getOKButton ().addActionListener (new ActionListener () {
            public void actionPerformed (ActionEvent _) {
              selectByQualifier (null, name,
                                 (String) value_choice.getSelectedItem ());
              value_choice_frame.setVisible (false);
              value_choice_frame.dispose ();
            }
          });
    
          value_choice_frame.setVisible (true);
        }    
      }
    
      /**
       *  Select all the features that match the given predicate.
       **/
      private void selectFeaturesByPredicate (final FeaturePredicate predicate) {
        final FeatureVector new_selection_features = new FeatureVector ();
    
        final FeatureEnumeration feature_enum = getEntryGroup ().features ();
    
        while (feature_enum.hasMoreFeatures ()) {
          final Feature current_feature = feature_enum.nextFeature ();
    
          if (predicate.testPredicate (current_feature)) {
            new_selection_features.add (current_feature);
          }
        }
    
        clearSelection ();
    
        getSelection ().add (new_selection_features);
      }
    
      /**
       *  If a range of bases is selected, then select the ORF around those
       *  bases.
       **/
      private void selectOrf () {
        if (!checkForSelectionRange ()) {
          return;
        }
    
        final MarkerRange range = getSelection ().getMarkerRange ();
    
        final Strand strand = getEntryGroup ().getBases ().getForwardStrand ();
    
        final MarkerRange start_orf_range =
          strand.getORFAroundMarker (range.getStart (), true);
    
        /*final*/ Marker end_marker;
    
        // get the marker of the first base of the last codon in the range (we
        // want to keep in the same frame)
        try {
          final int start_end_diff = range.getCount () - 1;
    
          final int mod_length = start_end_diff - start_end_diff % 3;
    
          end_marker = range.getStart ().moveBy (mod_length);
        } catch (OutOfRangeException e) {
          end_marker = range.getStart ();
        }
    
        final MarkerRange end_orf_range =
          strand.getORFAroundMarker (end_marker, true);
    
        MarkerRange new_range = range;
    
        if (start_orf_range != null) {
          new_range = new_range.extendRange (start_orf_range);
        }
    
        if (end_orf_range != null) {
          new_range = new_range.extendRange (end_orf_range);
        }
    
        if (start_orf_range == null && end_orf_range == null &&
            range.getCount () <= 6) {   // 6 == two codons
          new MessageDialog (getParentFrame (),
                             "there is no open reading frame at the selected " +
                             "bases");
          return;
        }
    
        getSelection ().setMarkerRange (new_range);
      }
    
      /**
       *  This method will ask the user for a range of bases (such as 100..200),
       *  using a MarkerRangeRequester component, then selects that range.
       **/
      private void selectBaseRange () {
        final MarkerRangeRequester range_requester =
          new MarkerRangeRequester ("enter a range of bases (eg. 100..200):",
                                    18, "");
    
        final MarkerRangeRequesterListener listener =
          new MarkerRangeRequesterListener () {
            public void actionPerformed (final MarkerRangeRequesterEvent event) {
              final MarkerRange marker_range =
                event.getMarkerRange (getEntryGroup ().getBases ());
    
              getSelection ().setMarkerRange (marker_range);
    
              makeBaseVisible (getSelection ().getStartBaseOfSelection ());
            }
          };
    
        range_requester.addMarkerRangeRequesterListener (listener);
    
        range_requester.setVisible (true);
      }
    
      /**
       *  This method will ask the user for a range of amino acids in a feature
       *  (such as 100..200), using a Requester component, then selects that
       *  range on the sequence.
       **/
      private void selectFeatureAARange () {
        if (!checkForSelectionFeatures (getParentFrame (), getSelection ())) {
          return;
        }
    
        final FeatureVector selected_features = getSelection ().getAllFeatures ();
    
        if (selected_features.size () > 1) {
          new MessageDialog (getParentFrame (), "select only one feature");
          return;
        }
    
        final Feature selected_feature = selected_features.elementAt (0);
    
        final MarkerRangeRequester range_requester =
          new MarkerRangeRequester ("enter a range of amino acids (eg. 100..200):",
                                    18, "");
    
        final MarkerRangeRequesterListener listener =
          new MarkerRangeRequesterListener () {
            public void actionPerformed (final MarkerRangeRequesterEvent event) {
              final Range range = event.getRawRange ();
    
              if (range == null) {
                return;
              }
    
              final int start_position = range.getStart ();
              final int end_position = range.getEnd ();
    
              final int start_pos_in_feature = (start_position - 1) * 3 + 1;
              final int end_pos_in_feature = (end_position - 1) * 3 + 3;
    
              try {
                final Marker start_marker =
                  selected_feature.getPositionInSequence (start_pos_in_feature);
    
                final Marker end_marker =
                  selected_feature.getPositionInSequence (end_pos_in_feature);
    
                final MarkerRange marker_range =
                  new MarkerRange (start_marker.getStrand (),
                                   start_marker.getPosition (),
                                   end_marker.getPosition ());
    
                getSelection ().setMarkerRange (marker_range);
    
                makeBaseVisible (getSelection ().getStartBaseOfSelection ());
              } catch (OutOfRangeException e) {
                new MessageDialog (getParentFrame (),
                                   "amino acid range is out of range " +
                                   "for this feature");
              }
            }
          };
    
        range_requester.addMarkerRangeRequesterListener (listener);
    
        range_requester.setVisible (true);
      }
    
      /**
       *  If there are some selected bases, select the feature in that range
       *  (replacing the orginal selection).  If some features are selected,
       *  select those features that overlap the selected features (and unselect
       *  the original features).
       **/
      private void selectOverlappingFeatures () {
        final MarkerRange selected_marker_range =
          getSelection ().getMarkerRange ();
    
        if (selected_marker_range == null) {
          final FeatureVector selected_features =
            getSelection ().getAllFeatures ();
    
          if (selected_features.size () == 0) {
            new MessageDialog (getParentFrame (), "nothing selected");
            return;
          } else {
            final FeatureVector new_selection = new FeatureVector ();
    
            for (int i = 0 ; i < selected_features.size () ; ++i) {
              final Feature this_feature = selected_features.elementAt (i);
    
              final Range this_feature_raw_range = this_feature.getMaxRawRange ();
    
              try {
                final FeatureVector overlapping_features =
                  getEntryGroup ().getFeaturesInRange (this_feature_raw_range);
    
                for (int overlapping_feature_index = 0 ;
                     overlapping_feature_index < overlapping_features.size () ;
                     ++overlapping_feature_index) {
                  final Feature overlapping_feature =
                    overlapping_features.elementAt (overlapping_feature_index);
    
                  if (!new_selection.contains (overlapping_feature)) {
                    new_selection.add (overlapping_feature);
                  }
                }
              } catch (OutOfRangeException e) {
                throw new Error ("internal error - unexpected exception: " + e);
              }
            }
    
            for (int i = 0 ; i < selected_features.size () ; ++i) {
              new_selection.remove (selected_features.elementAt (i));
            }
    
            getSelection ().set (new_selection);
          }
        } else {
          try {
            final Range raw_range = selected_marker_range.getRawRange ();
            getSelection ().set (getEntryGroup ().getFeaturesInRange (raw_range));
          } catch (OutOfRangeException e) {
            throw new Error ("internal error - unexpected exception: " + e);
          }
        }
      }
    
      /**
       *  This method sends an GotoEvent to all the GotoEvent listeners that will
       *  make the given base visible.
       **/
      private void makeBaseVisible (final Marker base_marker) {
        goto_event_source.gotoBase (base_marker);
      }
    
      /**
       *  Return the EntryGroup that was passed to the constructor.
       **/
      private EntryGroup getEntryGroup () {
        return entry_group;
      }
    
      /**
       *  The EntryGroup object that was passed to the constructor.
       **/
      private EntryGroup entry_group;
    
      /**
       *  The GotoEventSource object that was passed to the constructor.
       **/
      private GotoEventSource goto_event_source;
    
      private JMenuItem selector_item = null;
      private JMenuItem all_item = null;
      private JMenuItem all_bases_item = null;
      private JMenuItem none_item = null;
      private JMenuItem selection_toggle_item = null;
      private JMenuItem select_same_type_item = null;
      private JMenuItem select_matching_qualifiers_item = null;
      private JMenuItem select_features_in_range_item = null;
      private JMenuItem select_base_range_item = null;
      private JMenuItem select_aa_range_in_feature_item = null;
      private JMenuItem select_orf_item = null;
      private JMenuItem select_by_key_item = null;
      private JMenuItem select_non_pseudo_cds_item = null;
      private JMenuItem select_all_cds_item = null;
    }