Project

General

Profile

Download (1.04 KB) Statistics
| Branch: | Tag: | Revision:
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
 * Handler that creates the consensus sequence from all single read sequences in the active instance
22
 * of {@link AlignmentEditor}. A previously present consensus sequence will be overwritten.
23
 *
24
 * @author Ben Stöver
25
 * @date 19.06.2015
26
 * @see UpdateConsensusSequenceHandler
27
 * @see AlignmentEditor#createConsensusSequence()
28
 */
29
public class CreateConsensusSequenceHandler extends AbstractAlignmentEditorHandler {
30
    @Override
31
    public void doExecute(ExecutionEvent event, AlignmentEditor editor) throws ExecutionException {
32
        editor.createConsensusSequence();
33
    }
34
}
(8-8/21)