0413b869485470407534dadbd669962ed5ad4e70 kent Fri Apr 15 18:29:41 2011 -0700 Adding missing quotes to usage statement. diff --git src/utils/bedGeneParts/bedGeneParts.c src/utils/bedGeneParts/bedGeneParts.c index abd38e6..b725608 100644 --- src/utils/bedGeneParts/bedGeneParts.c +++ src/utils/bedGeneParts/bedGeneParts.c @@ -1,36 +1,37 @@ /* bedGeneParts - Given a bed, spit out promoter, first exon, or all introns.. */ #include "common.h" #include "linefile.h" #include "hash.h" #include "options.h" #include "basicBed.h" + static char const rcsid[] = "$Id: newProg.c,v 1.30 2010/03/24 21:18:33 hiram Exp $"; int proStart = -100; int proEnd = 50; void usage() /* Explain usage and exit. */ { errAbort( "bedGeneParts - Given a bed, spit out promoter, first exon, or all introns.\n" "usage:\n" " bedGeneParts part in.bed out.bed\n" "Where part is either 'exons' or 'firstExon' or 'introns' or 'promoter' or 'firstCodingSplice'\n" - "or secondCodingSplice\n" + "or 'secondCodingSplice'\n" "options:\n" " -proStart=NN - start of promoter relative to txStart, default %d\n" " -proEnd=NN - end of promoter relative to txStart, default %d\n" , proStart, proEnd ); } static struct optionSpec options[] = { {"proStart", OPTION_INT}, {"proEnd", OPTION_INT}, {NULL, 0}, }; enum partChoice {pcFirstExon, pcExons, pcIntrons, pcPromoter, pcFirstCodingSplice, pcSecondCodingSplice};