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
|
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <sys/time.h>
#include <string.h>
#include <inttypes.h>
#include <sys/stat.h> // for S_IRWXU etc
#include <vector>
#include <sys/statvfs.h> // to determine available disk space
#include <dirent.h> // to clear the temp directory
#ifndef SORTINGCOUNT_H
#define SORTINGCOUNT_H
#include "Bank.h"
#include "Kmer.h"
#include "Utils.h"
#include "OAHash.h"
using namespace std;
typedef uint32_t uint_abundance_t;
void sorting_count(Bank *Sequences, char *prefix, int max_memory, int max_disk_space, bool write_count, int verbose, bool skip_binary_conversion = false);
extern int optimism;
#endif
|