- removed dependencies to LibrAlign
[taxeditor.git] / eu.etaxonomy.taxeditor.molecular / src / eu / etaxonomy / taxeditor / molecular / handler / ReverseComplementHandler.java
1 /**
2 * Copyright (C) 2007 EDIT
3 * European Distributed Institute of Taxonomy
4 * http://www.e-taxonomy.eu
5 *
6 * The contents of this file are subject to the Mozilla Public License Version 1.1
7 * See LICENSE.TXT at the top of this package for the full license terms.
8 */
9 package eu.etaxonomy.taxeditor.molecular.handler;
10
11
12 import org.eclipse.core.commands.ExecutionEvent;
13 import org.eclipse.core.commands.ExecutionException;
14
15 import eu.etaxonomy.taxeditor.molecular.editor.AlignmentEditor;
16
17
18
19
20 /**
21 * Reverse complements the single read sequence in an active {@link AlignmentEditor}, where the alignment cursor
22 * is currently located.
23 *
24 * @author Ben Stöver
25 */
26 public class ReverseComplementHandler extends AbstractAlignmentEditorHandler {
27 @Override
28 public void doExecute(ExecutionEvent event, AlignmentEditor editor) throws ExecutionException {
29 editor.reverseComplementSelectedSequences();
30 }
31 }