Skip to content

Instantly share code, notes, and snippets.

@mdjones
Created June 11, 2009 14:47
Show Gist options
  • Save mdjones/127939 to your computer and use it in GitHub Desktop.
Save mdjones/127939 to your computer and use it in GitHub Desktop.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head><title>ProbeSearch</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<link rel="stylesheet" href="./include/blueprint/screen.css" type="text/css" media="screen, projection"/>
<link rel="stylesheet" href="./include/blueprint/ie.css" type="text/css" media="screen, projection"/>
<link rel="stylesheet" type="text/css" href="./include/genesearch.css" />
<script src="./include/jquery-1.3.2.min.js" type="text/javascript"></script>
<script src="./include/genesearch.js" type="text/javascript"></script>
<script src="http://static.simile.mit.edu/exhibit/api-2.0/exhibit-api.js"
type="text/javascript"></script>
<script type="text/javascript">
Exhibit.InlineImporter = { };
Exhibit.importers["inline"] = Exhibit.InlineImporter;
Exhibit.InlineImporter.load = function(data, database, cont) {
Exhibit.UI.showBusyIndicator();
database.loadData(data);
Exhibit.UI.hideBusyIndicator();
if (cont) cont();
};
$(document).ready(function(){
$("#probes").focus();
$('#geneSearchResults').hide();
$('#geneSearchFilters').hide();
});
</script>
</head>
<body>
<div class="container">
<div class="span-24">
<hr/>
</div>
<form id="oncExpressData" name="form" method="post" action="/oncexpress/probe.action">
<div class="span-24">
<div class="attributeheader">
<h5>
Search for probe
</h5>
</div>
</div>
<div class="span-8">
<div class="attributeheader"><h5>Search</h5></div>
<div class="span-8 last">
<input type="button" name="search" value="Search" class="btn" onclick="doAjaxGeneSearch()"/>
</div>
</div>
<div class="span-8">
<div class="attributeheader"><h5>Enter terms</h5></div>
<textarea name="probes" id="probes" rows="5" cols="5"></textarea>
</div>
<div class="span-8 last">
<div class="attributeheader"><h5>Try one or more of these probe id's</h5></div>
222243_s_at
202704_at
217941_s_at
216836_s_at
210930_s_at
222473_s_at
232896_at
221496_s_at
234354_x_at
234720_s_at
228834_at
</div>
</form>
<div id="geneSearchFilters" class="span-24">
<a target="_new" href="./OTB-probeset-help.html">Probeset Help</a>
<table>
<CAPTION><h3>Filters</h3></CAPTION>
<tr>
<td> <div ex:role="facet" ex:expression=".name" ex:facetLabel="Gene Name" ex:height=7em ex:scroll="false"></div> </td>
</tr>
</table>
</div>
</div>
<div id="geneSearchResults">
<table>
<tr valign="top">
<td ex:role="viewPanel" valign="top">
<div ex:role="view" ex:viewClass="Tabular"
ex:columns=".label, .name, .entrez_gene_id,.synonyms, .description"
ex:columnLabels="Probset, Gene Name, Gene ID, Synonyms, Description"
></div>
</td>
</tr>
</table>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment