staden-lg/src/newted/seqIOALF.h

41 lines
697 B
C

#ifndef _seqIOALF_h
#define _seqIOALF_h
/*
Title: seqIOALF
File: seqIOALF.h
Purpose: IO of ABI sequences
Last update: Tues Dec 11 1990
*/
/* ---- Imports ---- */
#include "seq.h" /* IMPORT: Seq */
#include <X11/Intrinsic.h> /* IMPORT: Boolean */
/* ---- Exports ---- */
extern Seq readSeqALF(char *fn);
/*
Read the ABI format sequence with name `fn' into `seq'.
All printing characters (as defined by ANSII C `isprint')
are accepted, but `N's are translated to `-'s.
A NULLSeq result indicates failure.
enzString is the enzyme string that is to be used for
searching for the left cutoff of sequence
*/
#endif /*_seqIOALF_h*/