File: complement.h

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

/*
 * Complements a contig. A C interface to the Fortran CMPLMT function.
 *
 * Returns 0 for success, -1 for failure
 */
int complement_contig(GapIO *io, int contig);

int tk_complement_contig(ClientData clientData, 
			 Tcl_Interp *interp, 
			 int argc, 
			 char *argv[]);

#endif