Spreadsheet links to Genome Browser views

From genomewiki
Revision as of 04:25, 5 December 2014 by Kuhn (talk | contribs) (→‎Customizing the links: added hoe to make a link to UCSC Genes details page)
Jump to navigationJump to search

Many users of the Genome Browser gather data of their own in Excel spreadsheets and would like to create links to the Browser using data in the spreadsheet. For example, a clinical geneticist may have lists of regions or genes for a patient that are duplicated or deleted, as determined by comparative genomic hybridization (CGH). These regions can be the source information for a browser view allowing access to each region with a single click.

UcscLinks.gif

Click to download the spreadsheet:
ucscLinks.xls

Careful use of Excel's "copy" and "move" functions should allow the links on this sheet to be used without modification.

Customizing the links

The contents of the last cell in the image above (cell G22 in the actual spreadsheet) are as follows:

 =HYPERLINK("http://genome.ucsc.edu/cgi-bin/hgTracks?db=hg19&position="&E22&"&dgv=pack&knownGene=pack&omimGene2=pack","ucsc")

The gene-name URL is made in this way:

=HYPERLINK("http://genome.ucsc.edu/cgi-bin/hgTracks?db=hg19&singleSearch=knownCanonical&position="&E16&"&omimGene2=pack&decipher=pack&snp131=dense","ucsc")

A link to the UCSC Genes details page would look like this:

=HYPERLINK("http://genome.ucsc.edu/cgi-bin/hgGene?org=human&db=hg19&hgg_gene="&E16,"ucsc")

This example shows how to create a link that turns on specific tracks of interest. In this case, three tracks are explicitly turned on:

 Database of Genomic Variants (table: dgv)
 UCSC Genes (table: knownGene)
 OMIM Genes (table: omimGene) 

Each track is set to "pack" in the link as follows:

 dgv=pack
 knownGene=pack
 omimGene2=pack

Any track that has been open in on your Browser will remain in the view when the new browser window opens.

A new track can be added using the tableName and a visibility of choice. e.g.:

 &snp131=dense

Simply add to the end of the url any other desired tableName=visibility, appended to the url by an ampersand (&). The simplest way to learn the name of the table underlying a track is to do a mouseover in a Genome Browser image and read the url at the bottom of the browser page. The table is shown in the url as

 g=tableName

You can also see the tableName by clicking into an item in the track and then clicking "show table schema" on the next page.

Visibility options include:

 hide
 dense
 squish
 pack
 full