E. coli genotypes/Exhibit

From OpenWetWare
Revision as of 12:32, 2 February 2007 by Austin J. Che (talk | contribs)
Jump to navigationJump to search

<html>

  <table width="100%">
      <tr valign="top">
          <td>
              <div id="exhibit-control-panel"></div>
              <div id="exhibit-view-panel"></div>
          </td>
          <td width="25%">
           <div id="exhibit-browse-panel" ex:facets=".purpose, .resistance, .requires, .lactose, .arabinose, .stopcodons, .Fplasmid, .lambda, .genotypetest"></div>
          </td>
      </tr>
  </table>

<script type="text/javascript"> var data = {

   items : [
       {
           label : "AG1",
           purpose : "cloning",
           resistance : "nalidixic acid",
           requires : "thiamine",
           stopcodons : "amber stop suppressed with glutamine",
           genotypetest : ["endA1", "recA1", "gyrA96", "thi-1", "relA1", "glnV44", "hsdR17(rK- mK+)"]
       },
       {
           label : "BL21(DE3)",
           purpose : "protein expression",
           Fplasmid : "F-",
           lactose : "lacIq",
           inducible : "T7 RNA polymerase",
           lambda : "prophage",
           parent : "B834",
           genotype : "F- ompT gal dcm lon hsdSB(rB- mB-) lambda(DE3 [lacI lacUV5-T7 gene 1 ind1 sam7 nin5])"
       },
       {
           label : "BL21(DE3) pLysS",
           description : "The pLysS plasmid (with chloramphenicol resistance) encodes T7 phage lysozyme, an inhibitor for T7 polymerase which reduces and almost eliminates expression from transformed T7 promoter containing plasmids when not induced.",
           purpose : "protein expression",
           Fplasmid : "F-",
           lactose : "lacIq",
           resistance : "chloramphenicol",
           inducible : "T7 RNA polymerase",
           lambda : "prophage",
           parent : "BL21(DE3)",
           genotype : "F- ompT gal dcm lon hsdSB(rB- mB-) lambda(DE3) pLysS(cmR)"
       },
       {
           label : "BNN93",
           Fplasmid : "F-",
           lambda : "no",
           lactose : "lac permease deletion",
           requires : "thiamine threonine leucine",
           stopcodons : "amber stop suppressed with glutamine",
           genotype : "F- tonA21 thi-1 thr-1 leuB6 lacY1 glnV44 rfbC1 fhuA1 mcrB e14-(mcrA-) hsdR(rKmK) lambda-"
       },
       {
           label : "BW26434 CGSC Strain #7658",
           lambda : "no",
           resistance : "kanamycin",
           lactose : "operon deleted",
           arabinose : "deletion",
           genotype : "D(araD-araB)567, D(lacA-lacZ)514(::kan), lacIp-4000(lacIq), lambda-, rpoS396(Am)?, rph-1, D(rhaD-rhaB)568, hsdR514"
       },
       {
           label : "C600",
           Fplasmid : "F-",
           purpose : "general purpose",
           lambda : "no",
           lactose : "lac permease deletion",
           requires : "thiamine threonine leucine",
           stopcodons : "amber stop suppressed with glutamine",
           genotype : "F- tonA21 thi-1 thr-1 leuB6 lacY1 glnV44 rfbC1 fhuA1 lambda-"
       },
       {
           label : "C600 hflA150 (Y1073, BNN102)",
           parent : "C600",
           Fplasmid : "F-",
           purpose : "cDNA libraries",
           lambda : "no",
           resistance : "tetracycline",
           lactose : "lac permease deletion",
           requires : "thiamine threonine leucine",
           stopcodons : "amber stop suppressed with glutamine",
           genotype : "F- thi-1 thr-1 leuB6 lacY1 tonA21 glnV44 lambda- hflA150(chr::Tn10)"
       },
   ]

};

      var SimileAjax_urlPrefix = "http://static.simile.mit.edu/ajax/api/";
      var Exhibit_urlPrefix = "http://simile.mit.edu/repository/exhibit/trunk/src/webapp/api/";
      var SimileAjax_onLoad = null;
      
      /* 
       *  You can optionally specify parameters:
       */
      var Exhibit_parameters = [

/*

          {   name:  "views",
              value: "timeline"
          }
  • /
      ];
      
      window.setTimeout(function() {
          var head = document.getElementsByTagName("head")[0];
          
          var includeScript = function(url) {
              var script = document.createElement("script");
              script.type = "text/javascript";
              script.language = "JavaScript";
              script.src = url;
              head.appendChild(script);
          }
          var includeCSS = function(url) {
              var link = document.createElement("link");
              link.setAttribute("rel", "stylesheet");
              link.setAttribute("type", "text/css");
              link.setAttribute("href", url);
              head.appendChild(link);
          }
          
          Exhibit_onLoad = function() {
              /*
               *  Include your own styles here.
               */
              // includeCSS("my-styles.css");
              SimileAjax.History.enabled = false;
              Exhibit.create(data,
                  null // the type of item to show, if there are several types in your data
              );
              /*
               *  Code that you normally put in the onLoad handler for 
               *  instantiating the exhibit and loading data.
               */
          };
          
          SimileAjax_onLoad = function() {
              SimileAjax_onLoad = Exhibit_onLoad;
              includeScript(Exhibit_urlPrefix + "exhibit-api.js?bundle=false");
          };
          includeScript(SimileAjax_urlPrefix + "simile-ajax-api.js");
      }, 100);
  </script>   

</html>