File: seqed_write.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 (15 lines) | stat: -rw-r--r-- 374 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _SEQED_WRITE_H_
#define _SEQED_WRITE_H_

void seqed_write_sequence(char *sequence, int pos,  int line_length,
			  char *line);

void seqed_write_ruler(int pos, int line_length, char *line);

void seqed_write_complement(char *sequence, int pos, int line_length,
			    char *line);

int seqed_write(tkSeqed *se,FILE *fp, int from, int to, int line_length);

#endif