aboutsummaryrefslogtreecommitdiff
path: root/kmer_utils.h
blob: 3caa8deff8359f9995d854778f796cde2f0eb6ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Kmer functions
void convert_kmer_to_num(char *str, const unsigned long length);
unsigned long num_to_index(const char *str, const int kmer, const long error_pos, long long *current_position);
char *index_to_kmer(unsigned long long index, long kmer);

// Utility functions
char *strnstrip(const char *s, char *dest, int c, int len);
unsigned long long pow_four(unsigned long long x);

// Variables
const unsigned char alpha[256]; 

// file loading functions
unsigned long long load_specific_mers_from_file(const char *fn, unsigned int kmer, size_t width, size_t *arr);
unsigned long long * get_kmer_counts_from_file(FILE *fh, const int kmer);