86b6f856f6131c16ac920d1604a1c1fe3ef9845f hiram Fri Dec 4 16:40:35 2020 -0800 adding legacy hub and correct links in trackData refs #23891 diff --git src/hg/makeDb/doc/asmHubs/commonHtml.pm src/hg/makeDb/doc/asmHubs/commonHtml.pm index 4cd0651..0697f76 100644 --- src/hg/makeDb/doc/asmHubs/commonHtml.pm +++ src/hg/makeDb/doc/asmHubs/commonHtml.pm @@ -1,97 +1,100 @@ package commonHtml; # helper functions for common HTML output features use warnings; use strict; use Carp; use vars qw(@ISA @EXPORT_OK); use Exporter; @ISA = qw(Exporter); # This is a listing of the public methods and variables (which should be # treated as constants) exported by this module: @EXPORT_OK = ( qw( otherHubLinks htmlFooter ) ); # otherHubLinks: arg one: vgpIndex, arg two: asmHubName, arg three: orderList # arguments allow decision on customization of the table for different # types of assembly hubs sub otherHubLinks($$) { my ($vgpIndex, $asmHubName) = @_; # different table output for VGP index if ((0 == $vgpIndex) && ($asmHubName ne "viral")) { printf "

\n\n"; - printf "\n"; + printf "\n"; printf "\n"; printf "\n"; printf "\n"; printf "\n"; printf "\n"; printf "\n"; + printf "\n"; printf "\n"; printf "\n"; printf "\n"; printf "\n"; printf "\n"; printf "\n"; printf "\n"; + printf "\n"; printf "\n"; printf "\n"; printf "\n"; printf "\n"; printf "\n"; printf "\n"; printf "\n"; + printf "\n"; printf "\n
Additional hubs with collections of assemblies
Additional hubs with collections of assemblies
Assembly hubs index pages: PrimatesMammalsBirdsFishother vertebrateslegacy/superseded
Hubs assembly statistics: PrimatesMammalsBirdsFishother vertebrateslegacy/superseded
Hubs track statistics: PrimatesMammalsBirdsFishother vertebrateslegacy/superseded
\n

\n"; } elsif (1 == $vgpIndex) { printf "

\n\n"; printf "\n"; printf "\n"; printf "\n"; printf "\n"; printf "\n"; printf "\n"; printf "\n"; printf "\n"; printf "\n"; printf "\n"; printf "\n"; printf "\n"; printf "\n"; printf "\n"; printf "\n"; printf "\n"; printf "\n"; printf "\n"; printf "\n"; printf "\n
Alternate sets of VGP assemblies
Index pages: primary assemblyalternate/haplotypetrio mat/patlegacy/superseded
Assembly statistics: primary assemblyalternate/haplotypetrio mat/patlegacy/superseded
Track statistics: primary assemblyalternate/haplotypetrio mat/patlegacy/superseded
\n

\n"; } } # sub otherHubLinks($$) ############################################################################ # common output at the bottom of an html index page sub htmlFooter() { print <<"END" END } ############################################################################