<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <title>CompClust - PC Extreme Genes for PC</title>
  <link rel="stylesheet" href="/compclust_css" type="text/css"
  	tal:attributes="href compclust_css" />
</head>
<body>
<span id="compclustMenu" tal:replace="structure menu"/>
<div id="compclustBody">
<h1><a href="#instructions">PC Extreme Gene List</a></h1>
<form action="" method="get">
  <p>
  <label for="pcNum">Choose component</label> 
  <select name="pcNum" id="pcNum">
    <option tal:repeat="pcNum pcNums" tal:content="pcNum/0"
            tal:attributes="selected pcNum/1">None</option>
  </select>
  </p>
  <p>Choose which annotations you would like to display in the pceg list.</p>
  <p>
  <div tal:repeat="cbi checkboxList" >
    <input type="checkbox" name="" id="" 
           tal:attributes="name cbi/id;id cbi/id;checked cbi/checked"/>
    <label for="" tal:attributes="for cbi/id" tal:content="cbi/label"></label><br/>
  </div>
  <input type="submit"/>
  </p>
</form>
<div id="compclustReport" tal:condition="report_head">
  <hr/>
  <h2>PCEG List</h2>
  <table>
    <thead>
      <tr><td tal:content='heading' tal:repeat='heading report_head'></td></tr>
    </thead>
    <tbody>
      <tr tal:repeat='row report_body'>
        <td tal:content='cell' tal:repeat='cell row'></td>
      </tr>
    </tbody>
  </table>
  <p>report</p>
</div>
<hr/>
<h1><a name="instructions">Instructions</a></h1>
<p>
  Display a list of the most extreme "high" and "low" data points (e.g. 
  genes) for a principal component of the user's choosing, indicating the 
  relative position of each extreme gene with respect to that principal 
  component's axis.
</p>
<p>
  Use the choose component to see which principal component you want to explore. 
  The format is principal component number - percent variance captured.
</p>
<p>
  The list of check boxes is used to select which annotation you would like to 
  see reported in your list.
</p>
</div>
</body>
</html>
