From 3cd522e991a71dde566023091f1cccc68beef038 Mon Sep 17 00:00:00 2001 From: Calvin Morrison Date: Tue, 31 Dec 2013 10:26:46 -0500 Subject: fix formatting --- count_nucleobases.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/count_nucleobases.c b/count_nucleobases.c index e02f5f6..8c05a07 100755 --- a/count_nucleobases.c +++ b/count_nucleobases.c @@ -35,11 +35,11 @@ int main() { } else { fprintf(stderr, "this does not look like a fasta file\n"); } } else { fprintf(stderr, "could not read file\n"); } - printf("A:%llu\nC:%llu\nG:%llu\nT:%llu\n", + printf("A:%llu\nC:%llu\nG:%llu\nT:%llu\n", counts['a'] + counts['A'], counts['c'] + counts['C'], counts['g'] + counts['G'], counts['t'] + counts['T']); - return EXIT_SUCCESS; + return EXIT_SUCCESS; } -- cgit v1.2.1