File: poly.h

package info (click to toggle)
sim4 0.0.20121010-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,896 kB
  • sloc: ansic: 8,496; makefile: 31; sh: 15
file content (14 lines) | stat: -rw-r--r-- 253 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef POLY_H
#define POLY_H

#define MIN_EXON 12

#define T_ONLY    1
#define A_ONLY    2
#define BOTH_AT   3

void get_polyAT(uchar *,int,int *,int *,int);

void remove_poly(struct edit_script_list **,Exon *,uchar *,uchar *,int,int *,int *);

#endif