Team:Aix-Marseille/Attributions
From 2014.igem.org
(3 intermediate revisions not shown) | |||
Line 2: | Line 2: | ||
<html> | <html> | ||
+ | |||
+ | <script> | ||
+ | // Function to handle the movement of the sidebar in the Project | ||
+ | $(document).ready(function () { | ||
+ | var sidebar = $('#sidebar-project'); | ||
+ | var sidebarContainer = $('#sidebar-project-div'); | ||
+ | |||
+ | $(window).scroll(function (event) { | ||
+ | var ypos = $(this).scrollTop(); | ||
+ | var scrollTop = $(window).scrollTop(), | ||
+ | elementOffset = sidebar.offset().top, | ||
+ | distance = (elementOffset - scrollTop); | ||
+ | |||
+ | var collision_top = sidebar.overlaps($('#stop_top')); | ||
+ | var collision_bot = sidebar.overlaps($('#stop_bot')); | ||
+ | |||
+ | if (collision_top.hits.length) { /* Collision TOP */ | ||
+ | // To fix at the top of the .row div | ||
+ | sidebar.css({ top: '', | ||
+ | bottom: '', | ||
+ | position: '', | ||
+ | width: '' | ||
+ | }); | ||
+ | sidebarContainer.css({ position:'', | ||
+ | bottom: '', | ||
+ | right: '' | ||
+ | }); | ||
+ | if (distance < 141) { | ||
+ | // To fix at the top of the page while scrolling | ||
+ | sidebar.css({ top: '141px', | ||
+ | bottom: '', | ||
+ | position: 'fixed', | ||
+ | width: '262.5px' | ||
+ | }); | ||
+ | sidebarContainer.css({ position: '', | ||
+ | bottom: '', | ||
+ | right: '' | ||
+ | }); | ||
+ | } | ||
+ | } | ||
+ | else if (collision_bot.hits.length) { /* Collision BOTTOM */ | ||
+ | // To fix at the bottom of the .row div | ||
+ | sidebar.css({ bottom: '', | ||
+ | top: '', | ||
+ | position: '', | ||
+ | width: '' | ||
+ | }); | ||
+ | sidebarContainer.css({ position: 'absolute', | ||
+ | bottom: '0px', | ||
+ | right: '0px' | ||
+ | }); | ||
+ | if (distance > 141) { | ||
+ | // To fix at the top of the page while scrolling | ||
+ | sidebar.css({ top: '141px', | ||
+ | bottom: '', | ||
+ | position: 'fixed', | ||
+ | width: '262.5px' | ||
+ | }); | ||
+ | sidebarContainer.css({ position: '', | ||
+ | bottom: '', | ||
+ | right: '' | ||
+ | }); | ||
+ | } | ||
+ | } | ||
+ | else if (distance <= 141) { | ||
+ | // To fix at the top of the page while scrolling | ||
+ | sidebar.css({ top: '141px', | ||
+ | bottom: '', | ||
+ | position: 'fixed', | ||
+ | width: '262.5px' | ||
+ | }); | ||
+ | sidebarContainer.css({ position: '', | ||
+ | bottom: '', | ||
+ | right: '' | ||
+ | }); | ||
+ | } | ||
+ | }); | ||
+ | |||
+ | |||
+ | }); | ||
+ | </script> | ||
+ | |||
+ | |||
+ | |||
<div class="container"> | <div class="container"> | ||
- | + | <h1 class="project-title">Attributions</h1> | |
- | + | ||
- | + | <div class="row" style="position:relative;"> | |
- | + | <!-- Content --> | |
- | + | <!-- ******* --> | |
- | + | <div class="col-md-9 project"> | |
- | + | <div class="project-section"> | |
- | + | <span class="project-tag" id="labwork"></span> | |
- | < | + | <h2>Lab work</h2> |
- | <p> | + | <ul> |
- | <p> | + | <li> |
- | <p> | + | <h3 class="subtitle" id="part_design">Part design</h3> |
- | + | <p>Clara, Lambert, Aimeric, Vincent, Alexia</p> | |
- | + | </li> | |
- | + | <li> | |
- | + | <h3 class="subtitle" id="chassis_construct">Chassis Construction</h3> | |
- | < | + | <p>Aimeric</p> |
- | <li> | + | </li> |
- | + | <li> | |
- | + | <h3 class="subtitle" id="sub-projects">Sub-projects</h3> | |
- | + | <ul> | |
- | + | <li><u>Serine production:</u> Aimeric, Alexia, Clara</li> | |
- | + | <li><u>ppGpp biosynthesis and degradation (RelA, Mesh2):</u> Alexia</li> | |
- | + | <li><u>CheA-CusR hybrid two component system:</u> Alexia, Clara, Lambert</li> | |
- | + | <li><u>GFP/RFP reporter system:</u> Clara, Lambert, Alexia</li> | |
- | + | </ul> | |
- | + | </li> | |
- | </ | + | </ul> |
+ | </div> | ||
+ | |||
+ | <div class="project-section"> | ||
+ | <span class="project-tag" id="modeling"></span> | ||
+ | <h2>Project Modeling</h2> | ||
+ | <p>Vincent</p> | ||
+ | </div> | ||
+ | |||
+ | <div class="project-section"> | ||
+ | <span class="project-tag" id="wiki"></span> | ||
+ | <h2>Wiki design, coding and filling</h2> | ||
+ | <p>Romain</p> | ||
+ | </div> | ||
+ | |||
+ | <div class="project-section"> | ||
+ | <span class="project-tag" id="safety"></span> | ||
+ | <h2>Safety</h2> | ||
+ | <p>Clara, Lambert, Aimeric, Vincent, Romain, Alexia</p> | ||
+ | </div> | ||
+ | |||
+ | <div class="project-section"> | ||
+ | <span class="project-tag" id="comm_fund"></span> | ||
+ | <h2>Communication and funding prospection</h2> | ||
+ | <p>Clara, Lambert, Aimeric, Vincent, Romain, Alexia</p> | ||
+ | </div> | ||
+ | |||
+ | <div class="project-section"> | ||
+ | <span class="project-tag" id="social_comm"></span> | ||
+ | <h2>Social network communication</h2> | ||
+ | <p>Romain</p> | ||
+ | </div> | ||
+ | |||
+ | <div class="project-section"> | ||
+ | <span class="project-tag" id="jamboree"></span> | ||
+ | <h2>Poster and oral communication at the iGEM Jamboree</h2> | ||
+ | <p>Alexia, Vincent, Aimeric</p> | ||
+ | </div> | ||
+ | |||
+ | <div class="project-section"> | ||
+ | <span class="project-tag" id="AMU_team"></span> | ||
+ | <h2>Creation of the iGEM-AMU association and Team member recruitment</h2> | ||
+ | <p>Clara, Lambert, Aimeric, Romain</p> | ||
+ | </div> | ||
+ | |||
+ | <div class="project-section"> | ||
+ | <span class="project-tag" id="advisors"></span> | ||
+ | <h2>Advisors</h2> | ||
+ | <p>We want to thank our advisors who gave us time and support during the different steps of the project, from Team construction to final Jamboree preparation.<p> | ||
+ | <p>James Sturgis participated in the initial project brainstorming, advised on parts design, experimental procedures, interpretation and presentation of results.</p> | ||
+ | <p>Gaël Chambonnier, Sandra Michel and Laetitia Houot trained students for bench work, advised on experimental design, provided technical support and troubleshooting on experiments, advised on interpretation and presentation of results.</p> | ||
+ | </div> | ||
+ | |||
+ | <div class="project-section"> | ||
+ | <span class="project-tag" id="collaborators"></span> | ||
+ | <h2>Collaborators</h2> | ||
+ | <p>We are very grateful to Dr. Bouveret who kindly shared her expertise in ppGpp metabolism, established the experimental design and did the validation of the BBa_K1349001 part.</p> | ||
+ | </div> | ||
+ | |||
+ | <div class="project-section"> | ||
+ | <span class="project-tag" id="ack"></span> | ||
+ | <h2>Acknowledgments</h2> | ||
+ | <ul> | ||
+ | <li> | ||
+ | <h3 class="subtitle" id="HL_eq">Host Laboratory and equipments</h3> | ||
+ | <p>To develop our project, we were hosted at the <b><a href="http://lism.cnrs-mrs.fr/" target="_blank"">Laboratoire d'Ingénierie des Systèmes Macromoléculaires</b></a> (LISM, UMR7255) CNRS-Aix-Marseille Université in Marseille.</p> | ||
+ | <p>The LISM provided us our own lab space, office space, computers and gave us unlimited access to centrifuges, PCR machines, freezers, incubators, glassware, magic box etc..</p> | ||
+ | <p>We want to thank Olivier, Isabelle and Annick at the LISM for technical assistance in buffers and growth medium preparation, waste management and glassware washing/sterilization.</p> | ||
+ | <p>The <b><a href="http://bio-sciences.univ-amu.fr/" target="_blank">Department of Biology in Aix-Marseille University</a></b> lent all us the regular bench equipment for molecular biology such as small centrifuges, PCR machine, pipetmans, electrophoresis apparatus, etc.</p> | ||
+ | </li> | ||
+ | <li> | ||
+ | <h3 class="subtitle" id="ressources">Ressources</h3> | ||
+ | <ul> | ||
+ | <li><p>Plasmids pWW2181, pWW2179 and pWW2021 used as matrix to construct the CheA-CusR hybrid two component system (parts BBa_K1349005, BBa_K1349007, BBa_K1349008) are a generous gift from Dr. J. Dueber (Berkeley University, USA). Related publication: Whitaker et al. PNAS 2012.</p></li> | ||
+ | <li><p>Plasmid template for RelA part construction (BBa_K1349001) is the work of Dr. E. Bouveret (LISM, Marseille).</p></li> | ||
+ | <li><p>The original plasmid carrying mesh2 and used as a template to build our mesh2 part (BBa_K1349004) was kindly provided by Dr. B. Field (Laboratoire de Génétique et Biophysique des Plantes, Marseille).</p></li> | ||
+ | </ul> | ||
+ | </li> | ||
+ | </ul> | ||
+ | </div> | ||
+ | </div> <!-- /Content --> | ||
+ | |||
+ | |||
+ | <!-- Table of Contents --> | ||
+ | <!-- ***************** --> | ||
+ | <div class="col-md-3" id="sidebar-project-div"> | ||
+ | <div id="stop_top" style="height:50px"></div> | ||
+ | <div id="sidebar-project"> | ||
+ | <ul class="nav"> | ||
+ | <li class="active"> | ||
+ | <a data-scroll href="#labwork">Lab work</a> | ||
+ | </li> | ||
+ | <li> | ||
+ | <a data-scroll href="#modeling">Project Modeling</a> | ||
+ | </li> | ||
+ | <li> | ||
+ | <a data-scroll href="#wiki">Wiki</a> | ||
+ | </li> | ||
+ | <li> | ||
+ | <a data-scroll href="#safety">Safety</a> | ||
+ | </li> | ||
+ | <li> | ||
+ | <a data-scroll href="#comm_fund">Communication / Funding</a> | ||
+ | </li> | ||
+ | <li> | ||
+ | <a data-scroll href="#social_comm">Social Network Communication</a> | ||
+ | </li> | ||
+ | <li> | ||
+ | <a data-scroll href="#jamboree">Jamboree</a> | ||
+ | </li> | ||
+ | <li> | ||
+ | <a data-scroll href="#AMU_team">Association and Recruitment</a> | ||
+ | </li> | ||
+ | <li> | ||
+ | <a data-scroll href="#advisors">Advisors</a> | ||
+ | </li> | ||
+ | <li> | ||
+ | <a data-scroll href="#collaborators">Collaborators</a> | ||
+ | </li> | ||
+ | <li class="active"> | ||
+ | <a data-scroll href="#ack">Acknowlegment</a> | ||
+ | </li> | ||
+ | </ul> | ||
+ | </div> | ||
</div> | </div> | ||
</div> | </div> | ||
+ | <div id="stop_bot"></div> | ||
</div> | </div> | ||
</html> | </html> | ||
{{Team:Aix-Marseille/footer}} | {{Team:Aix-Marseille/footer}} |
Latest revision as of 13:11, 11 October 2014
Attributions
Lab work
-
Part design
Clara, Lambert, Aimeric, Vincent, Alexia
-
Chassis Construction
Aimeric
-
Sub-projects
- Serine production: Aimeric, Alexia, Clara
- ppGpp biosynthesis and degradation (RelA, Mesh2): Alexia
- CheA-CusR hybrid two component system: Alexia, Clara, Lambert
- GFP/RFP reporter system: Clara, Lambert, Alexia
Project Modeling
Vincent
Wiki design, coding and filling
Romain
Safety
Clara, Lambert, Aimeric, Vincent, Romain, Alexia
Communication and funding prospection
Clara, Lambert, Aimeric, Vincent, Romain, Alexia
Social network communication
Romain
Poster and oral communication at the iGEM Jamboree
Alexia, Vincent, Aimeric
Creation of the iGEM-AMU association and Team member recruitment
Clara, Lambert, Aimeric, Romain
Advisors
We want to thank our advisors who gave us time and support during the different steps of the project, from Team construction to final Jamboree preparation.
James Sturgis participated in the initial project brainstorming, advised on parts design, experimental procedures, interpretation and presentation of results.
Gaël Chambonnier, Sandra Michel and Laetitia Houot trained students for bench work, advised on experimental design, provided technical support and troubleshooting on experiments, advised on interpretation and presentation of results.
Collaborators
We are very grateful to Dr. Bouveret who kindly shared her expertise in ppGpp metabolism, established the experimental design and did the validation of the BBa_K1349001 part.
Acknowledgments
-
Host Laboratory and equipments
To develop our project, we were hosted at the Laboratoire d'Ingénierie des Systèmes Macromoléculaires (LISM, UMR7255) CNRS-Aix-Marseille Université in Marseille.
The LISM provided us our own lab space, office space, computers and gave us unlimited access to centrifuges, PCR machines, freezers, incubators, glassware, magic box etc..
We want to thank Olivier, Isabelle and Annick at the LISM for technical assistance in buffers and growth medium preparation, waste management and glassware washing/sterilization.
The Department of Biology in Aix-Marseille University lent all us the regular bench equipment for molecular biology such as small centrifuges, PCR machine, pipetmans, electrophoresis apparatus, etc.
-
Ressources
Plasmids pWW2181, pWW2179 and pWW2021 used as matrix to construct the CheA-CusR hybrid two component system (parts BBa_K1349005, BBa_K1349007, BBa_K1349008) are a generous gift from Dr. J. Dueber (Berkeley University, USA). Related publication: Whitaker et al. PNAS 2012.
Plasmid template for RelA part construction (BBa_K1349001) is the work of Dr. E. Bouveret (LISM, Marseille).
The original plasmid carrying mesh2 and used as a template to build our mesh2 part (BBa_K1349004) was kindly provided by Dr. B. Field (Laboratoire de Génétique et Biophysique des Plantes, Marseille).