diff options
| author | Calvin Morrison <mutantturkey@gmail.com> | 2013-12-31 10:26:46 -0500 |
|---|---|---|
| committer | Calvin Morrison <mutantturkey@gmail.com> | 2013-12-31 10:26:46 -0500 |
| commit | 3cd522e991a71dde566023091f1cccc68beef038 (patch) | |
| tree | 7e77519ea873cb1c5133db1b6cb489d6beba10ef | |
| parent | 748602f91c94165c9ffcd6455331cb6191745c2d (diff) | |
fix formatting
| -rwxr-xr-x | count_nucleobases.c | 4 |
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; } |
