File: exclude.h

package info (click to toggle)
eigensoft 6.1.4%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,832 kB
  • ctags: 2,106
  • sloc: ansic: 36,435; perl: 648; makefile: 118; sh: 10
file content (20 lines) | stat: -rw-r--r-- 556 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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