File: common.h

package info (click to toggle)
pizzly 0.37.3%2Bds-11
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 476 kB
  • sloc: cpp: 1,458; python: 66; sh: 29; makefile: 13
file content (22 lines) | stat: -rw-r--r-- 406 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef COMMON_H
#define COMMON_H

#include <string>

#define PIZZLY_VERSION "0.37.3"

struct ProgramOptions {
  std::string gtf;
  std::string cache;
  std::string fusionFile;
  std::string fasta;
  std::string outprefix;
  bool ignoreProtein;
  int k;
  int alignScore;
  int insertSize;
  int kmerScore;
  ProgramOptions() : kmerScore(2), insertSize(400), ignoreProtein(false) {}
};

#endif // COMMON_H