1 /**
2  * UGENE - Integrated Bioinformatics Tools.
3  * Copyright (C) 2008-2021 UniPro <ugene@unipro.ru>
4  * http://ugene.net
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2
9  * of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19  * MA 02110-1301, USA.
20  */
21 
22 #ifndef _U2_WORKFLOW_BASE_LIB_H_
23 #define _U2_WORKFLOW_BASE_LIB_H_
24 
25 #include <U2Lang/Datatype.h>
26 
27 namespace U2 {
28 namespace Workflow {
29 
30 class U2LANG_EXPORT BaseActorCategories : public QObject {
31     Q_OBJECT
32 public:
33     static const Descriptor CATEGORY_DATASRC();
34     static const Descriptor CATEGORY_DATASINK();
35     static const Descriptor CATEGORY_CONVERTERS();
36     static const Descriptor CATEGORY_BASIC();
37     static const Descriptor CATEGORY_ALIGNMENT();
38     static const Descriptor CATEGORY_ASSEMBLY();
39     static const Descriptor CATEGORY_NGS_BASIC();
40     static const Descriptor CATEGORY_NGS_MAP_ASSEMBLE_READS();
41     static const Descriptor CATEGORY_RNA_SEQ();
42     static const Descriptor CATEGORY_VARIATION_ANALYSIS();
43     static const Descriptor CATEGORY_TRANSCRIPTION();
44     static const Descriptor CATEGORY_SCRIPT();
45     static const Descriptor CATEGORY_STATISTIC();
46     static const Descriptor CATEGORY_EXTERNAL();
47     static const Descriptor CATEGORY_DATAFLOW();
48     static const Descriptor CATEGORY_INCLUDES();
49     static const Descriptor CATEGORY_SNP_ANNOTATION();
50     static const Descriptor CATEGORY_CHIP_SEQ();
51 
52 };  // BaseActorCategories
53 
54 }  // namespace Workflow
55 }  // namespace U2
56 
57 #endif
58