File: open_reading_frames.h

package info (click to toggle)
staden 2.0.0%2Bb11-5
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 21,568 kB
  • sloc: ansic: 240,605; tcl: 65,360; cpp: 12,854; makefile: 11,201; sh: 2,952; fortran: 2,033; perl: 63; awk: 46
file content (20 lines) | stat: -rw-r--r-- 995 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef _OPEN_READING_FRAMES_H_
#define _OPEN_READING_FRAMES_H_

int write_open_frames_f ( FILE *fp, char *dna, int num_bases, 
			  int user_start, int user_end, int min_open );
int write_screen_open_frames_f ( char *dna, int num_bases, int user_start,
				 int user_end, int min_open );
void write_open_frames_f_ft ( FILE *fp, char *dna, int num_bases, 
			      int user_start, int user_end, int min_open );
void write_screen_open_frames_f_ft (char *dna, int num_bases, int user_start,
				    int user_end, int min_open );
int write_open_frames_r ( FILE *fp, char *dna, int num_bases, 
			  int user_start,int user_end, int min_open );
int write_screen_open_frames_r ( char *dna, int num_bases, int user_start,
				 int user_end, int min_open );
void write_open_frames_r_ft ( FILE *fp, char *dna, int num_bases, 
			      int user_start, int user_end, int min_open );
void write_screen_open_frames_r_ft (char *dna, int num_bases, int user_start,
				    int user_end, int min_open );
#endif