File: filetype.h

package info (click to toggle)
assembly-stats 1.0.1%2Bds-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 272 kB
  • sloc: cpp: 799; sh: 31; makefile: 9
file content (17 lines) | stat: -rw-r--r-- 298 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef FILETYPE
#define FILETYPE

#include <iostream>
#include <fstream>
#include <stdlib.h>

using namespace std;

const short FASTA_FILE = 1;
const short FASTQ_FILE = 2;
const short UNKNOWN = 3;

short fastaOrFastq(istream &inputstream);
short fastaOrFastq(string filename);

#endif // FILETYPE