Difference between revisions of "Team:WashU StLouis/Software"
(Prototype team page) |
Ayekedavid (Talk | contribs) |
||
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> | ||
− | < | + | <!-- 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> | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | </div> | + | |
</html> | </html> | ||
+ | {{:Team:WashU_StLouis/Footer}} |
Revision as of 00:41, 18 September 2015
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
-
Create a list of all genes, constructed from the provided GPRs in the genome scale model.
-
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.
-
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.
-
The FBA results are collected and outputted for further analysis.
The code can be found here