blob: 35e88ca7e2dd932a7be0bf3fed7c9c2fd4912b4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// count the sequences in a fasta file
unsigned long long count_sequences(const char *filename);
// normalize a matrix by dividing each element by the sum of it's column
void normalize_matrix(double *matrix, int height, int width);
// load a sensing matrix
struct matrix *load_sensing_matrix(const char *filename);
// add header and normalize count matrix
double *setup_count_matrix(char *filename, unsigned long long kmer, unsigned long long lambda, unsigned long long width);
// add header and normalize sensing matrix
struct matrix *setup_sensing_matrix(char *filename, unsigned long long kmer, unsigned long long lambda, unsigned long long width);
|