File: problem.h

package info (click to toggle)
gwama 2.2.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 544 kB
  • ctags: 439
  • sloc: cpp: 6,448; perl: 239; makefile: 18; sh: 11
file content (15 lines) | stat: -rwxr-xr-x 354 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

class problem
{
public:
	int markersAll;		//count of all markers
	int markersOK;		//count of ok markers
	int problemStrand;  //strand problem
	int wrongAlleles;	//wrong alleles problem
	int problemMulti;	//multiple occurances of SNP
	int problemEffect;	//effect is missing or problematic

	problem(void);
	~problem(void);
};