3db237ff65edd8bfc52f4b22088feb2acbc78bd0 mspeir Tue Nov 24 11:32:18 2015 -0800 Correcting spelling mistakes in usage and error messages, refs #14062 diff --git src/utils/methylateGenome/methylateGenome.c src/utils/methylateGenome/methylateGenome.c index 490ff60..2e07c6f 100644 --- src/utils/methylateGenome/methylateGenome.c +++ src/utils/methylateGenome/methylateGenome.c @@ -3,31 +3,31 @@ /* Copyright (C) 2014 The Regents of the University of California * See README in this or parent directory for licensing information. */ #include "common.h" #include "linefile.h" #include "hash.h" #include "options.h" #include "dnautil.h" #include "dnaLoad.h" #include "dnaseq.h" #include "fa.h" void usage() /* Explain usage and exit. */ { errAbort( - "methylateGenome - Creates a methylated version of a genome, in which any occurance of CG becomes TG\n" + "methylateGenome - Creates a methylated version of a genome, in which any occurrence of CG becomes TG\n" "usage:\n" " methylateGenome input.[fa|2bit] outputPrefix\n" "options:\n" " -xxx=XXX\n" ); } /* Command line validation table. */ static struct optionSpec options[] = { {NULL, 0}, }; void old(struct dnaSeq *seq) { int end = seq->size - 1;