Difference between revisions of "Team:WashU StLouis/Software"

(Prototype team page)
 
Line 1: Line 1:
{{WashU_StLouis}}
+
{{:Team:WashU_StLouis/Header}}
 
<html>
 
<html>
 +
<!-- Navigation -->
 +
  <nav class="navbar navbar-default navbar-fixed-top">
 +
    <div class="container">
 +
      <!-- Brand and toggle get grouped for better mobile display -->
 +
      <div class="navbar-header page-scroll">
 +
        <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
 +
          <span class="sr-only">Toggle navigation</span>
 +
          <span class="icon-bar"></span>
 +
          <span class="icon-bar"></span>
 +
          <span class="icon-bar"></span>
 +
        </button>
 +
        <a class="navbar-brand page-scroll" href="#page-top">Nitrogenius</a>
 +
      </div>
  
<h2>Software</h2>
+
      <!-- Collect the nav links, forms, and other content for toggling -->
 +
      <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
 +
        <ul class="nav navbar-nav navbar-right">
 +
          <li class="hidden">
 +
            <a href="#page-top"></a>
 +
          </li>
 +
          <li>
 +
            <a class="page-scroll" href="#parts_list">Software</a>
 +
          </li>
 +
          <li>
 +
            <a href="mailto:ayekedavidr@wustl.edu?subject=Bug">Report Bugs</a>
 +
          </li>
 +
        </ul>
 +
      </div>
 +
      <!-- /.navbar-collapse -->
 +
    </div>
 +
    <!-- /.container-fluid -->
 +
  </nav>
  
 +
  <!-- Project Overview -->
 +
  <!-- Main container -->
 +
  <div class="container">
 +
    <section id="software" class="row bg-white sectionNum1">
 +
      <h2><a href="#promoter">Singe Gene Knockout Software</a></h2>
 +
      <p>The Penn State team created a python script to perform single gene knockouts, and determin which genes gave greater metabolic values.</p>
 +
      <h4>Workflow</h4>
 +
      <ol>
 +
        <li>
 +
          <p>Create a list of all genes, constructed from the provided GPRs in the genome scale model.</p>
 +
        </li>
 +
        <li>
 +
        <p>Create lists of reactions that will be deleted for each gene knockout. This is done by evaluating each reaction GPR for each gene. If a gene is essential to a given GPR, the reaction is added to the list of reactions which will be deleted for that knockout.  </p>
 +
        </li>
 +
        <li>
 +
          <p>Given a list of deleted reactions for each gene, FBA is run iteratively for each gene knockout. Running FBA will determine maximum biomass, max and min ATP values, and max and min flavodoxin values. </p>
 +
        </li>
 +
        <li>
 +
          <p>The FBA results are collected and outputted for further analysis. </p>
 +
        </li>
 +
      </ol>
 +
      <p>The code can be found <a href="https://github.com/Dacode45/SingleGeneKO">here</a></p>
 +
    </section>
  
<div class="highlightBox">
+
  </div>
<h4>Note</h4>
+
<p>In order to be considered for the <a href="https://2015.igem.org/Judging/Awards#SpecialPrizes">Best Software Tool award</a>, you must fill out this page.</p>
+
</div>
+
 
+
 
+
<p>Regardless of the topic, iGEM projects often create or adapt computational tools to move the project forward. Because they are born out of a direct practical need, these software tools (or new computational methods) can be surprisingly useful for other teams. Without necessarily being big or complex, they can make the crucial difference to a project's success. This award tries to find and honour such "nuggets" of computational work.</p>
+
 
+
<p>
+
If you are working on software as your main project, please join the software track. If you are creating software as an addition to your main project, please apply for this award.
+
</p>
+
 
+
<p>
+
Here are a few examples from previous teams:
+
</p>
+
<ul>
+
<li><a href="https://2013.igem.org/Team:TU-Munich/Results/Software">TU Munich 2013</a></li>
+
<li><a href="https://2014.igem.org/Team:Heidelberg/Software">Heidelberg 2014</a></li>
+
<li><a href="https://2014.igem.org/Team:Aachen/Project/Measurement_Device#Software">Aachen 2014</a></li>
+
</ul>
+
 
+
</div>
+
  
 
</html>
 
</html>
 +
{{:Team:WashU_StLouis/Footer}}

Revision as of 00:41, 18 September 2015

Washington University - Penn State iGEM

Welcome To Our Website!
WashU and Penn State   iGEM 2015
Project Description Let's Talk Apply for the 2016 iGEM Team!

Singe Gene Knockout Software

The Penn State team created a python script to perform single gene knockouts, and determin which genes gave greater metabolic values.

Workflow

  1. Create a list of all genes, constructed from the provided GPRs in the genome scale model.

  2. Create lists of reactions that will be deleted for each gene knockout. This is done by evaluating each reaction GPR for each gene. If a gene is essential to a given GPR, the reaction is added to the list of reactions which will be deleted for that knockout.

  3. Given a list of deleted reactions for each gene, FBA is run iteratively for each gene knockout. Running FBA will determine maximum biomass, max and min ATP values, and max and min flavodoxin values.

  4. The FBA results are collected and outputted for further analysis.

The code can be found here