-
Notifications
You must be signed in to change notification settings - Fork 0
/
seqs_util.h
30 lines (25 loc) · 1.35 KB
/
seqs_util.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/***************************************************************************
seqs_util.h - description
-------------------
begin : Sun Sep 9 2001
copyright : (C) 2001 by Roman Roset
email : [email protected]
www.fib.upc.es
www.lsi.upc.es/~alggen
www.cepba.upc.es
***************************************************************************/
/***************************************************************************
* *
* This program is property of U.P.C (Technical University of Catalonia) *
* This program is made in CIRI (cepba-ibm ,European Center for *
* Parallelism of Barcelona) like project for the Group ALGGEN *
* (Algorithmics and Genetics Group). *
* *
**************************************************************************/
#ifndef ESSEM_SEQS_UTIL_H
#define ESSEM_SEQS_UTIL_H
extern int seqs_getInitialGaps(unsigned char * /*dna*/);
extern int seqs_getFinalGaps(unsigned char * /*dna */);
extern unsigned char *seqs_insertInitialGaps(unsigned char * /*dna*/, int /*number*/);
extern unsigned char *seqs_insertFinalGaps(unsigned char * /*dna*/, int /*number*/);
#endif