File: SortingCount.h

package info (click to toggle)
mapsembler2 2.2.3%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 8,080 kB
  • ctags: 9,676
  • sloc: cpp: 51,021; ansic: 13,465; sh: 460; makefile: 409; asm: 271; python: 28
file content (27 lines) | stat: -rw-r--r-- 659 bytes parent folder | download | duplicates (14)
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