8fb8b7633c8c5f0a7e6657b4d7fb79d6ac96df7b hiram Mon Mar 2 09:02:06 2020 -0800 correct one line header in usage message no redmine diff --git src/hg/gigAssembler/checkAgpAndFa/checkAgpAndFa.c src/hg/gigAssembler/checkAgpAndFa/checkAgpAndFa.c index 3b1a19c..5e916a8 100644 --- src/hg/gigAssembler/checkAgpAndFa/checkAgpAndFa.c +++ src/hg/gigAssembler/checkAgpAndFa/checkAgpAndFa.c @@ -20,32 +20,31 @@ static struct optionSpec optionSpecs[] = { {"exclude", OPTION_STRING}, {NULL, 0} }; /* Make the arguments global for convenience: */ char *agpFile = NULL; char *faFile = NULL; void usage() /* Explain usage and exit. */ { fflush(stdout); - errAbort( - "\ncheckAgpAndFa - takes a .agp file and .fa file and ensures that they are in synch\n" + errAbort("checkAgpAndFa - takes a .agp file and .fa file and ensures that they are in synch\n" "usage:\n\n" " checkAgpAndFa in.agp in.fa\n\n" "options:\n" " -exclude=seq - Ignore seq (e.g. chrM for which we usually get\n" " sequence from GenBank but don't have AGP)\n" "in.fa can be a .2bit file. If it is .fa then sequences must appear\n" "in the same order in .agp and .fa.\n" "\n"); } boolean isExcluded(char *seqName) /* Return true if seqName is -exclude'd. */ { return exclude != NULL && sameString(seqName, exclude); }