From 6e0e9fc80dbd23f65b3839f7eaecd9cf9d2b186c Mon Sep 17 00:00:00 2001 From: Calvin Morrison Date: Wed, 5 Mar 2014 13:32:22 -0500 Subject: don't add one, do sequences on a seperate printf --- src/c/multifasta_to_otu.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/c/multifasta_to_otu.c b/src/c/multifasta_to_otu.c index a18ca91..1abe787 100644 --- a/src/c/multifasta_to_otu.c +++ b/src/c/multifasta_to_otu.c @@ -226,7 +226,7 @@ int main(int argc, char **argv) { // 4 "ACGT" ^ Kmer gives us the size of output rows - width = pow(4, kmer) + 1; + width = pow(4, kmer); struct matrix *sensing_matrix = load_sensing_matrix(sensing_matrix_filename, kmer); double *sensing_matrix_ptr = sensing_matrix->matrix; @@ -234,7 +234,8 @@ int main(int argc, char **argv) { if(verbose) { printf("directory count: %llu\n", dir_count); - printf("width: %llu\nsequences %llu\n", width, sequences); + printf("width: %llu\n", width); + printf("sequences: %llu\n", sequences); } unsigned long long *solutions = malloc(dir_count * sequences * sizeof(unsigned long long)); -- cgit v1.2.3