6f796d7565a982f9b94cd3a0632aacc0c6abc3e1 hiram Mon Mar 2 08:53:52 2020 -0800 correct one line header to usage message no redmine diff --git src/utils/bedJoinTabOffset/bedJoinTabOffset.c src/utils/bedJoinTabOffset/bedJoinTabOffset.c index a00b1b2..e95e5b9 100644 --- src/utils/bedJoinTabOffset/bedJoinTabOffset.c +++ src/utils/bedJoinTabOffset/bedJoinTabOffset.c @@ -1,28 +1,28 @@ /* bedJoinTabOffset - Add file offset and length of line in a text file with the same name * as the BED name to each row of BED. */ #include "common.h" #include "linefile.h" #include "localmem.h" #include "hash.h" #include "obscure.h" #include "options.h" void usage() /* Explain usage and exit. */ { -errAbort( +errAbort("bedJoinTabOffset - Add file offset and length of line in a text file with the same name as the BED name to each row of BED.\n" "usage:\n" " bedJoinTabOffset inTabFile inBedFile outBedFile\n" "Given a bed file and tab file where each have a column with matching values:\n" "first get the value of column0, the offset and line length from inTabFile.\n" "Then go over the bed file, use the name field and append its offset and length\n" "to the bed file as two separate fields. Write the new bed file to outBed.\n" // "options:\n" // " -xxx=XXX\n" ); } /* Command line validation table. */ static struct optionSpec options[] = { {NULL, 0}, };