09f1e0f6809ff44752b332ea72c7faacdf085e99
hiram
  Tue May 26 11:16:06 2020 -0700
correct usage message refs #23734

diff --git src/hg/utils/automation/asmHubRmsk.pl src/hg/utils/automation/asmHubRmsk.pl
index 1e14054..3d0543d 100755
--- src/hg/utils/automation/asmHubRmsk.pl
+++ src/hg/utils/automation/asmHubRmsk.pl
@@ -1,28 +1,28 @@
 #!/usr/bin/env perl
 
 use strict;
 use warnings;
 use FindBin qw($Bin);
 use lib "$Bin";
 use AsmHub;
 use File::Basename;
 
 my $argc = scalar(@ARGV);
 
 if ($argc != 3) {
-  printf STDERR "usage: asmHubRmsk.pl asmId asmId.names.tab asmId.rmsk.class.profile > asmId.gap.html\n";
+  printf STDERR "usage: asmHubRmsk.pl asmId asmId.names.tab asmId.rmsk.class.profile > asmId.repeatMasker.html\n";
   printf STDERR "where asmId is the assembly identifier,\n";
   printf STDERR "and   asmId.names.tab is naming file for this assembly,\n";
   printf STDERR "and   asmId.rmsk.class.profile counts of rmsk categories.\n";
   exit 255;
 }
 
 my $asmId = shift;
 my $namesFile = shift;
 my $rmskClassProfile = shift;
 
 if ( ! -s $rmskClassProfile ) {
   printf STDERR "ERROR: can not find rmsk class profile file:\n\t'%s'\n", $rmskClassProfile;
   exit 255;
 }