From 9541dc697242924a47d8e2ab9b08158cd53b2fe4 Mon Sep 17 00:00:00 2001 From: Calvin Morrison Date: Fri, 31 Jan 2014 20:56:33 -0500 Subject: remove commas --- kmer_total_count.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'kmer_total_count.c') diff --git a/kmer_total_count.c b/kmer_total_count.c index 0b4e295..3cbb252 100644 --- a/kmer_total_count.c +++ b/kmer_total_count.c @@ -13,10 +13,10 @@ void help() { printf("usage: kmer_total_count -i input_file -k kmer [-n] [-l] ...\n\n"); printf("count mers in size k from a fasta file\n"); printf("\n"); - printf(" --input, -i input fasta file to count\n"); - printf(" --kmer, -k size of mers to count\n"); - printf(" --nonzero, -n only print non-zero values\n"); - printf(" --label, -l print mer along with value\n"); + printf(" --input -i input fasta file to count\n"); + printf(" --kmer -k size of mers to count\n"); + printf(" --nonzero -n only print non-zero values\n"); + printf(" --label -l print mer along with value\n"); printf("\n"); printf("Report all bugs to mutantturkey@gmail.com\n"); printf("\n"); @@ -29,7 +29,6 @@ void help() { } int main(int argc, char **argv) { - char *filename = NULL; unsigned int kmer = 0; -- cgit v1.2.1