File: exclude.h

package info (click to toggle)
eigensoft 7.2.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,696 kB
  • sloc: ansic: 32,354; perl: 470; makefile: 107; 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