File: fasta2.h

package info (click to toggle)
squizz 0.99d%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 6,772 kB
  • sloc: sh: 4,799; ansic: 2,640; lex: 1,992; yacc: 1,650; makefile: 123
file content (16 lines) | stat: -rw-r--r-- 307 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* fasta2.h - FASTA alignment functions */

#ifndef SQUIZZ_ALIGN_FASTA2_H_
#define SQUIZZ_ALIGN_FASTA2_H_

#include <stdio.h>

#include "align.h"


/* Functions prototypes */
int fasta2_check(FILE *);
align_t *fasta2_parse(FILE *);
void fasta2_print(FILE *, align_t *);

#endif /* SQUIZZ_ALIGN_FASTA2_H_ */