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 #include "BaseActorCategories.h"
23 
24 #include <U2Lang/WorkflowEnv.h>
25 
26 #include "LocalDomain.h"
27 
28 namespace U2 {
29 namespace Workflow {
30 
CATEGORY_DATASRC()31 const Descriptor BaseActorCategories::CATEGORY_DATASRC() {
32     return Descriptor("a", tr("Data Readers"), "");
33 }
34 
CATEGORY_DATASINK()35 const Descriptor BaseActorCategories::CATEGORY_DATASINK() {
36     return Descriptor("b", tr("Data Writers"), "");
37 }
38 
CATEGORY_CONVERTERS()39 const Descriptor BaseActorCategories::CATEGORY_CONVERTERS() {
40     return Descriptor("bc", tr("Data Converters"), "");
41 }
42 
CATEGORY_BASIC()43 const Descriptor BaseActorCategories::CATEGORY_BASIC() {
44     return Descriptor("c", tr("Basic Analysis"), "");
45 }
46 
CATEGORY_STATISTIC()47 const Descriptor BaseActorCategories::CATEGORY_STATISTIC() {
48     return Descriptor("st", tr("Utils"), "");
49 }
50 
CATEGORY_ALIGNMENT()51 const Descriptor BaseActorCategories::CATEGORY_ALIGNMENT() {
52     return Descriptor("d", tr("Multiple Sequence Alignment"), "");
53 }
54 
CATEGORY_ASSEMBLY()55 const Descriptor BaseActorCategories::CATEGORY_ASSEMBLY() {
56     return Descriptor("asm", tr("DNA Assembly"), "");
57 }
58 
CATEGORY_NGS_BASIC()59 const Descriptor BaseActorCategories::CATEGORY_NGS_BASIC() {
60     return Descriptor("ngs_base", tr("NGS: Basic Functions"), "");
61 }
62 
CATEGORY_NGS_MAP_ASSEMBLE_READS()63 const Descriptor BaseActorCategories::CATEGORY_NGS_MAP_ASSEMBLE_READS() {
64     return Descriptor("ngs_align", tr("NGS: Map/Assemble Reads"), "");
65 }
66 
CATEGORY_RNA_SEQ()67 const Descriptor BaseActorCategories::CATEGORY_RNA_SEQ() {
68     return Descriptor("rna", tr("NGS: RNA-Seq Analysis"), "");
69 }
70 
CATEGORY_VARIATION_ANALYSIS()71 const Descriptor BaseActorCategories::CATEGORY_VARIATION_ANALYSIS() {
72     return Descriptor("var", tr("NGS: Variant Analysis"), "");
73 }
74 
CATEGORY_TRANSCRIPTION()75 const Descriptor BaseActorCategories::CATEGORY_TRANSCRIPTION() {
76     return Descriptor("tr", tr("Transcription Factor Binding Sites"), "");
77 }
78 
CATEGORY_SCRIPT()79 const Descriptor BaseActorCategories::CATEGORY_SCRIPT() {
80     return Descriptor("sa", tr("Custom Elements with Script"), "");
81 }
82 
CATEGORY_EXTERNAL()83 const Descriptor BaseActorCategories::CATEGORY_EXTERNAL() {
84     return Descriptor("ex", tr("Custom Elements with External Tools"), "");
85 }
86 
CATEGORY_DATAFLOW()87 const Descriptor BaseActorCategories::CATEGORY_DATAFLOW() {
88     return Descriptor("df", tr("Data Flow"), "");
89 }
90 
CATEGORY_INCLUDES()91 const Descriptor BaseActorCategories::CATEGORY_INCLUDES() {
92     return Descriptor("inc", tr("Includes"), "");
93 }
94 
CATEGORY_SNP_ANNOTATION()95 const Descriptor BaseActorCategories::CATEGORY_SNP_ANNOTATION() {
96     return Descriptor("sch", tr("SNP Annotation"), "");
97 }
98 
CATEGORY_CHIP_SEQ()99 const Descriptor BaseActorCategories::CATEGORY_CHIP_SEQ() {
100     return Descriptor("chs", tr("NGS: ChIP-Seq Analysis"), "");
101 }
102 
103 }  // namespace Workflow
104 }  // namespace U2
105