From fa48bb8c603ad6f2a98b425b6a97e1dc27ecc166 Mon Sep 17 00:00:00 2001 From: Calvin Morrison Date: Mon, 28 Oct 2013 12:04:46 -0400 Subject: Update quikr_functions to read our sensing format --- src/c/quikr_functions.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/c/quikr_functions.h') diff --git a/src/c/quikr_functions.h b/src/c/quikr_functions.h index 1826427..6ebde00 100644 --- a/src/c/quikr_functions.h +++ b/src/c/quikr_functions.h @@ -1,11 +1,11 @@ // count the sequences in a fasta file -int count_sequences(char *filename); +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 -double *load_sensing_matrix(char *filename, int height, int width); +struct sensing_matrix *load_sensing_matrix(const char *filename); // load a count matrix double *load_count_matrix(char *filename, int width, int kmer); -- cgit v1.2.3