File: mcf_tantan_options.hh

package info (click to toggle)
tantan 23-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 492 kB
  • sloc: cpp: 2,062; sh: 58; makefile: 39
file content (34 lines) | stat: -rw-r--r-- 657 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
// Copyright 2010 Martin C. Frith

#ifndef MCF_TANTAN_OPTIONS_HH
#define MCF_TANTAN_OPTIONS_HH

namespace mcf {

struct TantanOptions {
  TantanOptions();

  void fromArgs(int argc, char** argv);

  bool isProtein;
  char maskSymbol;
  bool isPreserveLowercase;
  const char *scoreMatrixFileName;
  double repeatProb;
  double repeatEndProb;
  int maxCycleLength;
  double repeatOffsetProbDecay;
  int matchScore;
  int mismatchCost;
  int gapExistenceCost;
  int gapExtensionCost;
  double minMaskProb;
  double minCopyNumber;
  enum OutputType { maskOut, probOut, countOut, bedOut, repOut } outputType;

  int indexOfFirstNonOptionArgument;
};

}

#endif