a3499beb622c64ee44fc2e31a4191f89f46ae7cb hiram Mon Mar 2 10:42:07 2020 -0800 correct one line header message in usage() no redmine diff --git src/hg/makeDb/hgLoadWiggle/fixStepToBedGraph.pl src/hg/makeDb/hgLoadWiggle/fixStepToBedGraph.pl index 6c0eca7..7a9af6d 100755 --- src/hg/makeDb/hgLoadWiggle/fixStepToBedGraph.pl +++ src/hg/makeDb/hgLoadWiggle/fixStepToBedGraph.pl @@ -5,30 +5,31 @@ # # used thusly: # zcat fixedStepData.gz | ./fixStepToBedGraph.pl \ # | gzip > bedGraph.gz # $Id: fixStepToBedGraph.pl,v 1.3 2008/03/05 18:42:01 kate Exp $ use warnings; use strict; my $position = 0; my $chr = ""; my $step = 1; my $span = 1; +print STDERR "fixStepToBedGraph.pl - read fixedStep wiggle input data, output four column bedGraph format data\n"; print STDERR "usage: fixStepToBedGraph.pl\n"; print STDERR "\trun in a pipeline like this:\n"; print STDERR "usage: ", "zcat fixedStepData.gz | fixStepToBedGraph.pl | gzip > bedGraph.gz", "\n"; print STDERR "reading input data from stdin ...\n"; while (my $dataValue = <>) { chomp $dataValue; if ( $dataValue =~ m/^fixedStep / ) { $position = 0; $chr = ""; $step = 1; $span = 1;