- added handler to exported packages
[taxeditor.git] / eu.etaxonomy.taxeditor.editor / src / main / java / eu / etaxonomy / taxeditor / editor / handler / alignmenteditor / CreateConsensusSequenceHandler.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.editor.handler.alignmenteditor;
10
11
12 import org.eclipse.core.commands.ExecutionEvent;
13 import org.eclipse.core.commands.ExecutionException;
14
15 import eu.etaxonomy.taxeditor.editor.molecular.AlignmentEditor;
16
17
18
19 /**
20 * Handler that creates the consensus sequence from all single read sequences in the active instance
21 * of {@link AlignmentEditor}. A previously present consensus sequence will be overwritten.
22 *
23 * @author Ben Stöver
24 * @date 19.06.2015
25 * @see UpdateConsensusSequenceHandler
26 * @see AlignmentEditor#createConsensusSequence()
27 */
28 public class CreateConsensusSequenceHandler extends AbstractAlignmentEditorHandler {
29 @Override
30 public void doExecute(ExecutionEvent event, AlignmentEditor editor) throws ExecutionException {
31 editor.createConsensusSequence();
32 }
33 }