infoMessages.cpp
Go to the documentation of this file.
1 /* *****************************************************************************
2 
3  trimAl v2.0: a tool for automated alignment trimming in large-scale
4  phylogenetics analyses.
5 
6  readAl v2.0: a tool for automated alignment conversion among different
7  formats.
8 
9  2009-2019
10  Fernandez-Rodriguez V. (victor.fernandez@bsc.es)
11  Capella-Gutierrez S. (salvador.capella@bsc.es)
12  Gabaldon, T. (tgabaldon@crg.es)
13 
14  This file is part of trimAl/readAl.
15 
16  trimAl/readAl are free software: you can redistribute it and/or modify
17  it under the terms of the GNU General Public License as published by
18  the Free Software Foundation, the last available version.
19 
20  trimAl/readAl are distributed in the hope that it will be useful,
21  but WITHOUT ANY WARRANTY; without even the implied warranty of
22  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23  GNU General Public License for more details.
24 
25  You should have received a copy of the GNU General Public License
26  along with trimAl/readAl. If not, see <http://www.gnu.org/licenses/>.
27 
28 ***************************************************************************** */
29 
30 #include "reportsystem.h"
31 
32 const std::map<InfoCode, const char *> reporting::reportManager::InfoMessages =
33 {
35  "Cutting sequence \"[tag]\" at first appearance of stop codon \"[tag]\""
36  " (residue \"[tag]\") at position [tag] (length: [tag] \")"},
37 
39  "Window size (-w) is provided. "
40  "It's recommended to use specific consistency window size (-cw)"
41  " when using -compareset option"},
43  "Applying SNP to \"[tag]\":\"[tag]\" at position [tag] \"[tag]\"->\"[tag]\""
44  },
45 
47  "Removing sequence \"[tag]\" as it is a duplicate of \"[tag]\"."}
48 };
Class that allows us to centralize all the reporting messages that should be used to inform the user ...
Definition: reportsystem.h:354
Internal classes to handle reporting to user in several ways. The reporting system is made so a devel...
Definition: reportsystem.h:307
static const std::map< InfoCode, const char * > InfoMessages
Definition: reportsystem.h:369
InfoCode
Definition: reportsystem.h:291