File: problem.h

package info (click to toggle)
gwama 2.2.2%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 564 kB
  • sloc: cpp: 6,448; perl: 239; xml: 38; makefile: 24; 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);
};