c0af5f216f8ff00466f0d222cede7f491fd17d81 galt Fri Jan 20 23:09:35 2023 -0800 More fixes for stuff found by htmlCheck, refs #7914 diff --git src/hg/hgTables/usage.c src/hg/hgTables/usage.c index 461ea28..a0eb2a0 100644 --- src/hg/hgTables/usage.c +++ src/hg/hgTables/usage.c @@ -3,31 +3,31 @@ /* Copyright (C) 2013 The Regents of the University of California * See kent/LICENSE or http://genome.ucsc.edu/license/ for licensing information. */ #include "common.h" #include "jksql.h" #include "hgTables.h" static char *getGenomeSpaceText() /* Return GenomeSpace help text if it is enabled */ { if (isGenomeSpaceEnabled()) { return "
  • Send output to GenomeSpace: sends data to \n" " GenomeSpace Data Manager for use with\n" -" diverse computational tools.\n"; +" diverse computational tools.
  • \n"; } else { return ""; } } void printMainHelp() /* Put up main page help info. */ { hPrintf( "This section provides brief line-by-line descriptions of the Table \n" "Browser controls. For more information on using this program, see the \n" "Table \n" "Browser User's Guide.\n" @@ -66,64 +66,64 @@ " particular chromosome or region.\n" " Select genome to apply the query to the entire genome \n" " (not available for certain tracks with restrictions on data sharing).\n" " In some Human assemblies, you may select ENCODE to examine only the \n" " ENCODE Pilot regions.\n" " To limit the query to a specific position, type a \n" " chromosome name, e.g. chrX, or a chromosome coordinate \n" " range, such as chrX:100000-200000, or a gene name or other id in \n" " the text box.\n" " You can select multiple genomic regions by clicking the "define regions" \n" " button and entering up to 1,000 regions in a 3- or 4-field BED file \n" " format.\n" " \n" "
  • lookup: Press this button after typing in a gene name or \n" -" other id in the position text box to look up the chromosome position\n" +" other id in the position text box to look up the chromosome position
  • \n" " \n" "
  • identifiers (selected tracks only): Restricts the \n" " output to table data that match a list of identifiers, for\n" " instance RefSeq accessions for the RefSeq track. If no identifiers \n" " are entered, all table data within the specified region will be \n" " displayed.
  • \n" " \n" "
  • filter: Restricts the query to only those items that\n" " match certain criteria, e.g. genes with a single exon. Click the \n" " Create button to add a filter, the Edit button to \n" " modify an existing filter, or the Clear button to remove an \n" " existing filter.
  • \n" " \n" "
  • intersection (selected tracks only): Combines the output \n" " of two queries into a \n" " single set of data based on specific join criteria. For example, this \n" " can be used to find all SNPs that intersect with RefSeq coding \n" " regions. The intersection can be configured to retain the \n" " existing alignment structure of the table with a specified amount of \n" " overlap, or discard the structure in favor of a simple list of position\n" " ranges using a base-pair intersection or union of the two data sets. \n" " The button functionalities are similar to those of the filter\n" " option.
  • \n" "
  • output: Specifies the output format (not all options are \n" " available for some tracks). Formats include:\n" " \n" " Note that all start-end coordinate ranges are returned in UCSC's internal zero-based/half-open format, see our " " FAQ, with the exception of the formats GTF, data points (aka \"wiggle\") " " and hyperlinks, which are one-based/closed." "
  • \n" " \n" "
  • Send output to Galaxy: displays results of query in \n" " Galaxy, a framework for \n" -" interactive genome analysis.\n" +" interactive genome analysis.
  • \n" "
  • Send output to GREAT: displays the functional enrichments of the \n" " query results in GREAT, a tool for\n" -" analysis of the biological function of cis-regulatory regions.\n" +" analysis of the biological function of cis-regulatory regions.
  • \n" "%s" "
  • file type returned: When a filename is entered in the \n" " "output file" text box, specifies the format of the output file:\n" " \n" "
  • \n" "
  • get output: Submits a data query based on the specified \n" " parameters and returns the output.
  • \n" " \n" "
  • summary/statistics: Displays statistics about the data \n" " specified by the parameters.
  • \n" " \n" " \n" , getGenomeSpaceText() ); }