File: exclude.h

package info (click to toggle)
eigensoft 8.0.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,936 kB
  • sloc: ansic: 33,392; perl: 717; makefile: 104; sh: 10
file content (18 lines) | stat: -rw-r--r-- 550 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef _EXCLUDE_
#define _EXCLUDE_

#include <admutils.h>
#include <mcio.h>
#include <stdio.h>

/*  file name parameter : xregionname */
/*  HW filter parameter : nhwfilter (-1 means no-filter) */
/*  maximum number of regions : 1000
    closed intervals in physical position include endpoints */
/*  read file and set ignore flag for SNPs */
void excluderegions (char *xregionname, SNP ** snps, int nsnps,
		     char *deletesnpoutname);
void hwfilter (SNP ** snps, int nsnps, int nindiv, double nhwfilter,
	       char *deletesnpoutname);

#endif