aboutsummaryrefslogtreecommitdiff
path: root/count_nucleobases.c
diff options
context:
space:
mode:
Diffstat (limited to 'count_nucleobases.c')
-rwxr-xr-xcount_nucleobases.c4
1 files 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;
}