git-svn-id: https://www.grenoble.prabi.fr/svn/LECASofts/ecoPrimers/trunk@175 60f365c0-8329-0410-b2a4-ec073aeeaa1d
26 lines
424 B
C
26 lines
424 B
C
/**
|
|
* @file KMRK_sequence.h
|
|
* @author Eric Coissac <coissac@inrialpes.fr>
|
|
* @date Tue Feb 24 22:22:57 2004
|
|
*
|
|
* @brief Header file for sequence utilities
|
|
*
|
|
*
|
|
*/
|
|
|
|
#ifndef KMRK_sequence_h
|
|
#define KMRK_sequence_h
|
|
|
|
#include <stdint.h>
|
|
|
|
int8_t CheckSeq(char *seq, char *alpha);
|
|
|
|
void nonACGTXtoN(char *seq);
|
|
|
|
void UpperSequence(char *seq);
|
|
|
|
void invseq(char *seqsrc, char *seqdest);
|
|
|
|
|
|
#endif /* KMRK_sequence_h */
|