File: normalizer.h

package info (click to toggle)
libncl 2.1.21%2Bgit20180827.c71b264-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 5,784 kB
  • sloc: cpp: 33,499; sh: 10,658; python: 533; makefile: 226
file content (45 lines) | stat: -rw-r--r-- 1,050 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#ifndef NORMALIZER_H
#define NORMALIZER_H

#include <string>
#include <iostream>
class PublicNexusReader;

void writeAsNexus(PublicNexusReader & nexusReader, std::ostream & os);

class TranslatingConventions {
	public:
		TranslatingConventions()
			:idPrefix(),
			globalIncrementingIDs(false),
			currentOTUIndex(0),
			currentOTUsIndex(0),
			currentCharsIndex(0),
			currentCharIndex(0),
			currentStateIndex(0),
			currentStateSetIndex(0),
			currentTreesIndex(0),
			currentTreeIndex(0),
			currentNodeIndex(0),
			currentEdgeIndex(0),
			treatNodeLabelsAsStrings(false),
			emitTreesAndTaxaOnly(false) {
			}
	std::string idPrefix;
	bool globalIncrementingIDs;
	unsigned currentOTUIndex;
	unsigned currentOTUsIndex;
	unsigned currentCharsIndex;
	unsigned currentCharIndex;
	unsigned currentRowIndex;
	unsigned currentStateIndex;
	unsigned currentStateSetIndex;
	unsigned currentTreesIndex;
	unsigned currentTreeIndex;
	unsigned currentNodeIndex;
	unsigned currentEdgeIndex;
	bool treatNodeLabelsAsStrings;
	bool emitTreesAndTaxaOnly;
};

#endif