aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCalvin Morrison <mutantturkey@gmail.com>2014-01-31 20:56:33 -0500
committerCalvin Morrison <mutantturkey@gmail.com>2014-01-31 20:56:33 -0500
commit9541dc697242924a47d8e2ab9b08158cd53b2fe4 (patch)
tree032e8a7e5b14fa7acd51a0f7809e0f0e5689b7c1
parent8adaa6a4bda299545254dd54f8f631f789c87d6a (diff)
remove commas
-rw-r--r--kmer_total_count.c9
1 files changed, 4 insertions, 5 deletions
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;