Difference between revisions of "Team:Calgary/Description"

 
(109 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{:Template:Calgary/Layout}}
+
{{Calgary/Imposter-Navbar-No-Logo}}
 +
<!--
 +
    Final Colours:
 +
    menu bar (red-brown): #882916
 +
    progress bar (light orange-yellow): #FFA600
 +
    light blue: #0197AE
 +
    dark blue: #1E6273
 +
    dark orange: #FF7700
 +
    light red: #FBF6F3
 +
    light yellow: #F1C23F (jumbotron h1)
 +
-->
 +
<!-- INSTRUCTIONS for adding more sections
 +
 
 +
1. copy and paste the following code above the message at end of code (message says CONTENT):
 +
 
 +
<div class = "NAME" id="NAME">
 +
        <h2>NAME</h2>
 +
        <h3>HEADER</h3>
 +
        <p>
 +
          PASTE IN TEXT HERE
 +
        </p>
 +
</div>
 +
<br>
 +
<hr>
 +
 
 +
2. Where it says NAME, type in name of section. This has to be the SAME thing you type in for every place it says NAME. for the NAME after the id, you cannot include spaces between words, so use dashes instead, also don't use capitals. (Ex. NAME of section is "Future Directions", so i would paste that in where ever it says NAME. for the NAME after the id, I would type in "future-directions".) Also type in desired HEADER and text where it says PASTE IN TEXT HERE.
 +
 
 +
3. Now we have to add the section to the sidebar menu. For this, go through the code and find the part where it says SIDEBAR. where it says "replace-title" paste in the NAME you put in after the id (Ex. I would paste in "future-directions".) Where it says "Title" paste in the NAME of the section.
 +
 
 +
4. Now go to the part of the code where it says "References section of page slightly above the header". In the line of code after that, add in #NAME after a comma after the last one that is there before the curly brackets. (Ex. I would paste in #future-directions after the last item in that line of code after a comma.)
 +
 
 +
5. I've included the example in the code so you can follow along.That's all. You're all done!! :D If you need help just ask! 
 +
-->
 +
<!-- INSTRUCTIONS for adding more experiment sections to accordion:
 +
 
 +
1. copy and paste the following above the message showing where to paste (it says ACCORDION in the message):
 +
 
 +
<div class="card">
 +
    <div class="card-header" id="headingREPLACE">
 +
      <h2 class="mb-0">
 +
        <button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseREPLACE" aria-expanded="false" aria-controls="collapseREPLACE">
 +
          EXPERIMENT
 +
        </button>
 +
      </h2>
 +
    </div>
 +
    <div id="collapseREPLACE" class="collapse" aria-labelledby="headingREPLACE" data-parent="#accordionExample">
 +
      <div class="card-body">
 +
        PASTE IN TEXT HERE.
 +
      </div>
 +
    </div>
 +
  </div>
 +
 
 +
2. Every place where it says REPLACE in the code, type in the next highest numerical number. (Ex. if I am putting in a new experiment I would copy and paste the code above, and type in "Five" where REPLACE is because the last number used in the code was "Four".) The main thing is that whatever you type in for REPLACE has to only be present there and nowhere else in the code!!!!
 +
 
 +
3. You can now copy and paste in your text from your protocol where it says PASTE IN TEXT HERE. And paste in the name of your experiment where it says EXPERIMENT.
 +
 
 +
-->
 
<html>
 
<html>
 
   <head>
 
   <head>
     <link rel="stylesheet" type="text/css" href="https://2019.igem.org/Template:Calgary/Model-Styling?action=raw&ctype=text/css">
+
<!-- LINKS THE SIDEBAR CSS SHEET BECAUSE THIS PAGE USES A SIDEBAR -->
     <script src="https://2019.igem.org/Template:Calgary/DynamicSizeModelPage?action=raw&ctype=text/javascript"></script>
+
     <link
 +
      rel="stylesheet"
 +
      type="text/css"   href="https://2020.igem.org/Template:Calgary/Imposter-Sidebar-2-Style?action=raw&ctype=text/css"
 +
    />
 +
 
 +
<link href="https://fonts.googleapis.com/css2?family=Public+Sans:wght@500;600;700&display=swap" rel="stylesheet">
 +
 
 +
<link
 +
      rel="stylesheet"
 +
      type="text/css"
 +
      href="https://2020.igem.org/Template:Calgary/Imposter-Content-Style?action=raw&ctype=text/css"
 +
    />
 +
   
 +
   
 +
     <script src="https://2020.igem.org/Template:Calgary/DynamicSizeModelPage?action=raw&ctype=text/javascript"></script>
 
     <style>
 
     <style>
      .expand-on-hover:hover {
 
        transform: scale(1.1);
 
        -webkit-transition: transform 500ms linear;
 
        -ms-transition: transform 500ms linear;
 
        transition: transform 500ms linear;
 
        cursor: pointer;
 
      }
 
  
      .expand-on-hover:hover .icon svg > * {
+
/* The banner image */
        stroke: #F8B200;
+
.banner-image {
        -webkit-transition: stroke 500ms linear;
+
  /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
        -ms-transition: stroke 500ms linear;
+
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.5) 100%), url("https://static.igem.org/mediawiki/2020/4/42/T--Calgary--mom.jpg");
        transition: stroke 500ms linear;
+
      }
+
  
      .expand-on-hover:hover p {
+
  /* Set a specific height */
        color: #444444;
+
  height: 65vh;
        -webkit-transition: color 500ms linear;
+
        -ms-transition: color 500ms linear;
+
        transition: color 500ms linear;
+
      }
+
  
      .container{
+
  /* Position and center the image to scale nicely on all screens */
        padding-left: 20%;
+
  background-position: center;
        padding-right: 20%;
+
  background-repeat: no-repeat;
        margin: 0 auto;
+
  background-size: cover;
      }
+
  position: relative;
 +
  background-attachment: fixed;
 +
}
  
      .emphasis{
 
        color: #4aaac2;
 
        font-size: 23px;
 
        font-weight: 500;
 
        margin-left: 10%;
 
        margin-right: 10%;
 
        text-align: center;
 
      }
 
  
      .statement{
+
/*header font size for tablet*/
        color: grey;
+
@media(max-width: 768px){
        font-size:20px;
+
  .resp h1{
        font-weight: 450;
+
    font-size:55px!important;
        margin-left: 15%;
+
  }}
        margin-right: 15%;
+
 
        text-align: center;
+
/*header font size for mobile*/
      }
+
@media (max-width:525px){
 +
  .resp h1{
 +
    font-size:50px!important;
 +
  }}
  
      .helper {
 
        display: inline-block;
 
        height: 100%;
 
        vertical-align: middle;
 
      }
 
      .left{
 
        margin-right: 15%;
 
      }
 
      .right{
 
        margin-right: 15%;
 
      }
 
  
      .title{
+
@media (max-width: 767px) {
        color: #4aaac2;
+
        font-size:65px;
+
        font-weight: 500;
+
        text-align: center;
+
        font-family: 'Barlow';
+
        font-weight: bold;
+
        margin-bottom: 15px;
+
      }
+
  
      .subtitle{
+
.banner-image {
        margin-left:20%;
+
  background-position: center;
        margin-right:20%;
+
}
      }
+
}
  
      .center {
 
        display: block;
 
        margin-left: auto;
 
        margin-right: auto;
 
        width: 50%;
 
      }
 
  
      .titleArea{
 
  
  
 +
/* Fixing the top content under the navbar */
 +
      .banner-image {
 +
        position: relative;
 
       }
 
       }
 +
 +
 +
 +
 +
 +
/* References section of page slightly above the header */
 +
#Vitamin-A-Deficiency, #The-Oviita-Philosophy, #gold {
 +
    padding-top: 50px;
 +
    margin-top: -50px;
 +
}
 +
 +
.expand-on-hover:hover {
 +
transform: scale(1.1);
 +
-webkit-transition: transform 500ms linear;
 +
    -ms-transition: transform 500ms linear;
 +
    transition: transform 500ms linear;
 +
cursor: pointer;
 +
}
 +
 +
.expand-on-hover:hover .icon svg > * {
 +
stroke: #F8B200;
 +
    -webkit-transition: stroke 500ms linear;
 +
    -ms-transition: stroke 500ms linear;
 +
    transition: stroke 500ms linear;
 +
}
 +
 +
.expand-on-hover:hover p {
 +
color: #444444;
 +
    -webkit-transition: color 500ms linear;
 +
    -ms-transition: color 500ms linear;
 +
    transition: color 500ms linear;
 +
}
 +
 +
 +
/*Font size in sidebar */
 +
.sidenav a {font-size: 20px;}
 +
 +
 +
/* Accordion styling */
 +
.btn {color:#882916;}
 +
 +
 +
.intro-body ul {
 +
  list-style: none;
 +
}
 +
 +
.intro-body ul li:before {
 +
  content: '✓';
 +
}
 +
 +
  
 
     </style>
 
     </style>
 
   </head>
 
   </head>
  <body>
 
  
 +
  <body style="background-color: #FFFFFF;" ;>
 
     <div class="container-fluid">
 
     <div class="container-fluid">
  
  
      <div class="desktop-banner-back">
+
<!-- SIDEBAR -->
        <div class="text-area">
+
        <div class="sidenav" id="sidenav">
           <div class="page-banner">
+
          <a href="https://2020.igem.org/Team:Calgary"
            <h2 class="page-subtitle">Description</h2>
+
            ><img
            <h1 class="page-title">Alberta Farmers and Oil Producers are Our Inspiration</h1>
+
              src="https://static.igem.org/mediawiki/2020/c/c1/T--Calgary--whitelogo.jpg"
          </div>
+
              style="height: 150px; width: auto; padding-top:20px; position:relative; left:-20px;"
 +
          /></a>
 +
<br>
 +
          <a href="#Video">Oviita at a Glance</a>
 +
<br>
 +
           <a href="#Vitamin-A-Deficiency">Vitamin A Deficiency</a>  
 +
<br>
 +
          <a href="#The-Oviita-Philosophy">The Oviita Philosophy</a>
 +
<br>
 +
          <a href="#Our-Approach">Our Approach</a>
 +
<br>
 +
        </div>
 +
 
 +
 
 +
 
 +
 
 +
<div class="main">
 +
      <!-- HEADER/BANNER -->
 +
      <div class="banner-image">
 +
        <div class="banner-text resp">
 +
          <h1 style="font-weight: 600; font-family: 'Public Sans', sans-serif;">DESCRIPTION</h1>
 +
             
 
         </div>
 
         </div>
 
       </div>
 
       </div>
 +
     
 +
      <!-- BODY -->
 +
      <div class="intro-body">
  
      <div class="interface-group">
+
<div class = "video" id="Video">
        <div class="content-area" id="textual-content">
+
        <h2>Oviita at a Glance</h2>
          <div class="page">
+
<br>
<div class="row"><div class="col-lg-2 col-md-2 col-sm-0 col-xs-0"></div><div class="col-lg-8 col-md-8 col-sm-12 col-xs-12">
+
<center><video width="100%;" controls autoplay>
            <div class="emphasis">
+
  <source src="https://static.igem.org/mediawiki/2020/1/18/T--Calgary--Promotionalvideo.mov" />
              Albertans are a tough breed.
+
</video></center>
              <br><br>
+
              We are a land of ranchers, roughnecks, foresters, and farmers.
+
              <br><br>
+
              We have tilled the earth through unforgiving prairie winters and we have thrived while doing it.
+
              <br><br>
+
              Our beautiful prairie landscape is painted yellow with budding canola.
+
            </div>
+
            <br><br>
+
            <div class="statement">
+
              We were inspired by the true grit of Albertan farmers who stand up to any challenge.
+
              This is iGEM Calgary's contribution.
+
              This is yOIL.
+
            </div></div><div class="col-lg-2 col-md-2 col-sm-0 col-xs-0"></div></div>
+
          </div>
+
  
          <div class="header-area">
+
</div>
            <h1>The Problem</h1>
+
<br>
          </div>
+
<hr>
          <br><br>
+
<div class = "project-design" id="Vitamin-A-Deficiency">
          <img class ="center" src ="https://static.igem.org/mediawiki/2019/3/31/T--Calgary--field.jpg" style ="width:100%">
+
        <h2>Vitamin A Deficiency</h2>
          <br><br>
+
        <h4> Understanding the Importance of Vitamin A </h4>
          <img class ="center" src ="https://static.igem.org/mediawiki/2019/c/cb/T--Calgary--canola.png" style ="max-height:200px; width: auto;">
+
     
          <div class="subtitle">
+
<p>An estimated 250 million children worldwide are currently suffering from Vitamin A deficiency (WHO, 2020). Vitamin A deficiency, also known as VAD, is one of the leading causes of preventable childhood mortality, also playing roles in causing reproductive issues, reduced immune function, vision loss, and in severe cases, xerophthalmia, the leading cause of preventable childhood blindness (UNICEF, 2019). While VAD has essentially been eradicated in many places around the globe, parts of South Asia and Sub-Saharan Africa are still facing a Vitamin A crisis. It disproportionately harms some of the world’s most vulnerable populations, particularly pregnant women and children. These groups typically lack access to varied diets, due to a variety of socioeconomic and cultural factors.</p>
            Canola oil is one of <b>Canada's leading exports</b>. In 2017, the Canadian grown canola contributed <b>$26.7 billion</b> to
+
            the Canadian economy each year, including more than <b>$250,000 jobs</b> and <b>$11.2 billion in wages</b>
+
.
+
          </div>
+
  
 +
<img class="img-fluid"src="https://static.igem.org/mediawiki/2020/4/46/T--Calgary--VAD_map.png">
 +
<p style="color:grey; font-size: 85%;"> Figure 1. Colour-coded map depicting areas of no significant prevalence of VAD to areas of high prevalence of VAD.</p>
  
          <br><br>
+
<p>Vitamin A refers to a group of fat-soluble retinoids, and as a result, it requires fat to be properly absorbed by the body. Vitamin A cannot be synthesized by the body, so it is taken up in two forms: preformed Vitamin A, as found in meat and fish, or provitamin A carotenoids, most commonly in the form of beta-carotene (National Institutes of Health, 2020). Beta-carotene rich foods include green leafy vegetables, such as spinach, and orange vegetables, such as sweet potatoes (National Institutes of Health, 2020). Where preformed Vitamin A can be toxic to the body in high enough concentrations, beta-carotene and other carotenoids do not carry that same risk.</p>
          <div class="statement">
+
            However, there is a threat.  
+
          </div>
+
          <br><br>
+
  
          <div class="title">The Green Seed Problem</div>
+
<center><video width="80%;" autoplay loop muted playsinline>
          <img class ="center" src ="https://static.igem.org/mediawiki/2019/d/d6/T--Calgary--greenseed.png" style ="max-height:150px; width: auto;">
+
  <source src="https://static.igem.org/mediawiki/2020/8/8d/T--Calgary--Betacarotene_video.mp4" />
          <br><br>
+
</video></center>
          <div class="subtitle">
+
<p style="color:grey; font-size: 85%;"> Figure 2. Conversion of beta-carotene to retinol</p>
            As canola seeds mature, enzymes break down the green chlorophyll pigment resulting
+
            in a mature brown seed. The "green seed problem" arises when canola plants are exposed
+
            to frost, drought or other inclement weather before maturation is complete. The chlorophyll
+
            degradation pathway is suspended and the seed remains green.
+
          </div>
+
          <br><br>
+
          <div class = "statement">
+
            "Green is the difference between profit and loss."<br>
+
            <i>Craig Shand</i>
+
          </div>
+
  
          <br><br>
+
<p>The low fat diets of the affected South Asian and Sub Saharan African areas also play a role in reduced Vitamin A uptake. For example, up to 70% of a South Asian diet consists solely of rice, a grain with very low lipid content (Bishwajit et al., 2013). Frankly, rice is cheap, making it much more accessible for poorer and rural regions. Many of these areas also lack fortified foods, making it more difficult for the population to obtain the necessary nutrients to maintain health (Vitamin Angels, 2020). Not coincidentally, these demographics are hit hard by Vitamin A deficiency.<p>
          <div class="statement">
+
            What is so bad about that?
+
          </div>
+
  
          <br><br>
 
          <div class="container">
 
            <div class="row">
 
              <div class="col-sm">
 
                Farmers lament the fact that their green canola seeds have to be sold
 
                at a discount price. Thus, a farmer like <a class="abody" href="https://2019.igem.org/Team:Calgary/Attributions">Craig Shand</a> is
 
                forced to go from <b>$10 per bushel to $7 per bushel</b> on a hard earned harvest.
 
              </div>
 
              <div class="col-sm">
 
                Excess chlorophyll in canola oil causes the oil to spoil faster, have a bitter taste, and a low smoke point. Downstream, oil crushers need to spend more money to remove chlorophyll from
 
                the canola oil in order to have a viable consumer product. This <b>process is costly, and oil is lost in the process</b>.
 
              </div>
 
            </div>
 
          </div>
 
          <br><br>
 
  
  
          <div class="statement">
+
</div>
            The green seed problem is a leech on the canola industry, stealing money out of the hands of farmers and oil producers.
+
<br>
            With the same grit and dedication of our hard working Albertan farmers, we developed yOIL.
+
<hr>
          </div>
+
<div class = "part-design" id="The-Oviita-Philosophy">
          <br><br>
+
        <h2>THE OVIITA PHILOSOPHY</h2>
          <div class="title">The Solution</div>
+
        <h4>Expanding Upon Previous Solutions</h4>
          <div class="row">
+
            <div class="col-lg-3 col-md-3 col-sm-0 col-xs-0"></div>
+
            <div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
+
              <br><br>
+
              <img class ="center" src ="https://static.igem.org/mediawiki/2019/2/21/T--Calgary--pipelineFull.png" style ="width:100%">
+
              <br><br>
+
              <p>
+
                yOIL is a multi-faceted attack on the green seed problem.
+
              </p>
+
              <p>          The system
+
                utilizes
+
                <a class ="abody" href ="https://2019.igem.org/Team:Calgary/ChlorophyllExtraction">
+
                  water-soluble-chlorophyll</a> binding proteins <a class = "abody" href = "https://2019.igem.org/Team:Calgary/EmulsifiedBindingProteinProcess">
+
                emulsified</a> in water droplets
+
                to remove chlorophyll molecules from oil.
+
                The captured chlorophyll will then be <a class = "abody" href = "https://2019.igem.org/Team:Calgary/RepurposingChlorophyll">
+
                repurposed</a> into pheophorbide, an experimental photosensitizer with potential as an
+
                <a class="abody" href="https://2019.igem.org/Team:Calgary/Anti-Fungal">anti-fungal</a> agent.
+
              </p>
+
              <p>          To address ambiguities that arise when farmers take their seeds to be graded, our team developed
+
                a standardized seed grading platform, lovingly called <a class ="abody" href = "https://2019.igem.org/Team:Calgary/Modelling/StandardizedSeedGrading">"Mean Green Machine"
+
                </a> which automates the grading process. We took the Mean Green Machine (MGM) to <a class="abody" href="https://2019.igem.org/Team:Calgary/Human_Practices">The
+
                Canadian Grain Commission</a> where they gave us vital feedback to help move MGM closer to a fully-implemented product.
+
              </p>
+
              <p>          Inclement weather is what causes green seed, and knowing the weather lets farmers
+
                make crucial decisions regarding their crop.
+
                We cannot control the weather, but we can create tools to predict it. After all, everyone could use more <a class ="abody" href="https://2019.igem.org/Team:Calgary/SunnyDays">Sunny Days</a>. 
+
                Based on <dfn>Recurrent Neural Networks</dfn> and <dfn>Principal Component Analysis</dfn>, Sunny Days is a weather predictive algorithm capable of predicting the weather 180 days into the future
+
                with a mean absolute error of 2.0 degrees.
+
              </p>
+
             
+
             
+
             
+
             
+
            </div><div class="col-lg-3 col-md-3 col-sm-0 col-xs-0"></div>
+
          </div>
+
          <div class = "header-area">
+
            <img class ="center" src ="https://static.igem.org/mediawiki/2019/0/08/T--Calgary--yOIL-Background.png" style ="width:75%">
+
          </div>
+
  
 +
<p>In 1990, the World Summit for Children called for the ‘virtual elimination of Vitamin A deficiency and its consequences, including blindness’ (UNICEF, 2000). Since then, initiatives such as the Golden Rice Project, Micronutrient Days, and increased biofortification have greatly reduced the prevalence of Vitamin A Deficiency. 39% of people in low and middle income nations were Vitamin A deficient in 1991, compared to 29% in 2013 (Stevens et al., 2015). Despite this vast improvement, many nations in Sub-Saharan Africa and South Asia still see up to 48% of the population suffering from the deficiency and its consequences (Stevens et al., 2015). The aforementioned initiatives to battle VAD were impressive. So why didn’t they seem to work?</p>
  
 +
<p>The answer lies primarily in the lack of sustainability of these solutions. The Golden Rice Project is a strain of rice genetically modified to produce beta-carotene, a precursor to Vitamin A. Golden Rice, despite all of its potential to be a Vitamin A superfood, still requires lots of time, space, and labour to grow. Most of these areas not only consume rice, but also export it, making it a valuable crop in regards to economic potential. The pushback against golden rice has made nations skeptical in cultivating it, as current GMO containment strategies are mediocre at best. There are fears that countries that start growing Golden Rice might also contaminate white rice exports (Lenz, 2015). Both India and Bangladesh lie within the Top 5 rice-producing nations, so rice exports play a huge role in their economy, as well as in the economy of other South Asian countries (Bishwajit et al. 2013).</p>
  
          <div class ="title">
+
<p>Micronutrient Days are popular in regions of Africa, but are unfortunately, few and far between. For example, Burkina Faso has held two “Vitamin A Days” annually, where Vitamin A and other important supplements are given out (Bruins & Kraemer, 2013). But according to Dr. Dia Sanou, there will still be people who will never be able to access these supplements, whether it be due to other afflictions that lessen the uptake of Vitamin A, personal matters that get in the way of attending these micronutrient days, or a lack of infrastructure that prevents easy access to obtaining these supplements. Another problem with Micronutrient Days are that they are based on external infrastructure. Without aid organizations hosting these events, there is no way to obtain Vitamin A supplements.</p>
            <h1>An All-Encompassing Solution to the Green Seed Problem</h1>
+
          </div>
+
  
          <div class="subtitle">
+
<p>Biofortification of food is another initiative held in many of these places, but lack of access to a diversified diet also results in a lack of access to fortified food, whether this be due to expenses, distance, or availability.</p>
            We have worked tirelessly to bring yOIL to fruition.  
+
 
            <br>We have submitted <b>28 new parts</b> to
+
<img style="display: block; margin-left: auto; margin-right: auto;" width=95% src="https://static.igem.org/mediawiki/2020/c/c1/T--Calgary--vitAmitigation.png" />
            the Biobrick registry, created <b>7 models</b> which informed our project design and held
+
<p style = "text-align: left; color: #444444; font-size: 14px;"> Figure 3. Vitamin A mitigation strategies</p>
            <b>over 35 meetings with stakeholders</b>, not to mention the innumerable number of hours in the  
+
 
            lab (plus an extra 8 to travel to Boston).
+
<p>Our conversations with anthropologists, humanitarian organizations, and medical professionals have introduced us to the requirements for effectively tackling VAD. In order to promote autonomy and decrease reliance on external aid organizations, our solution must be practical and simple, providing the tools to set-up and maintain a Vitamin A distribution system within the community. It must be inexpensive and accessible, making use of materials that people can easily obtain. And finally, its implementation must be flexible, allowing it to easily integrate into local conditions and culture.</p>  
            <br><br>
+
 
            After all is said and done, it is our privilege to present
+
<p>This is where Oviita comes in.</p>
            <br><br>
+
 
          </div>
+
<p>Our goal is to ensure that by using Oviita, communities are able to independently produce Vitamin A in an easy and accessible manner, eventually leading to the mitigation and elimination of Vitamin A Deficiency.</p>  
          <img class ="center" src ="https://static.igem.org/mediawiki/2019/7/75/T--Calgary--yoilBlack.png" style ="width:20%">
+
 
          <div class="header-area">
+
 
 +
</div>
 +
<br>
 +
<hr>
 +
 
 +
<div class = "part-design" id="Our-Approach">
 +
        <h2>Our Approach</h2>
 +
        <h4>Introducing Oviita</h4>
 +
 
 +
<p>Oviita is a system involving a food-safe strain of yeast, Y. lipolytica, that has been engineered to produce beta-carotene, a precursor to Vitamin A. When selecting our yeast chassis, we had six major considerations:</p>
 +
 
 +
<img style="width: 100%; align: left;" src="https://static.igem.org/mediawiki/2020/5/58/T--Calgary--whyYL.png"  />
 +
 
 +
 
 +
<p>To promote sustainability, this yeast has also been engineered to include cellulase enzymes, so it can digest cellulose. Due to this, the Oviita yeast can be grown simply and  inexpensively in the community using straw, indigestible grain husks, or other agricultural waste byproducts as food. These sources of cellulose currently go unused, and are sometimes even simply burned in the fields, contributing to air pollution. By diverting this waste material into a valuable resource for cultivating Oviita with small-scale, locally-led production, we empower communities to improve their health and take their nutritional security into their own hands.</p>
 +
 
 +
<p>Oviita can be cultivated simply and intuitively, using mainly resources individuals already have on hand. A community ‘bioreactor’ provides an easily accessible and contained vessel for the yeast to be cultivated. The yeast can be harvested directly from this vessel, where it can be skimmed off, cooked, and added to any food as an edible supplement. We’ve developed a series of recipes that can be made with the addition of the Oviita yeast to it.</p>
 +
 
 +
<p>The production of a Vitamin-A rich supplement and developing a vessel for its cultivation is not enough to alleviate the multi-faceted issue of Vitamin A deficiency. So, we set out to hit some other issues that also affect the prevalence of Vitamin A deficiency. In order to ensure that the Oviita yeast is grown in a safe environment and that it would not affect the environment in case of escape, we developed a biocontainment system. To further incorporate Oviita into the community and promote growth, we ideated some Micro-Enterprise opportunities. The Randle’s Cell Testing Device is a field-based method to test for Vitamin A deficiency. And last, but not least, the addition of thymol, an anthelmintic compound, to the yeast, leads to deworming and increased Vitamin A absorption.</p>
 +
 
 +
<p>To learn more about the many facets of Oviita, click on the pipeline below:</p>
 +
 
 +
<img style="width:100%;"src="https://static.igem.org/mediawiki/2020/3/3b/T--Calgary--communitynopipeline.png" /><br><br>
 +
 
 +
<div class="row">
 +
 
 +
<div class="col-lg-2 col-md-2 col-sm-4 col-xs-4 expand-on-hover" > <a target="blank" href="https://2020.igem.org/Team:Calgary/Cellulase_Engineering">
 +
                <div class="container__sources">
 +
                    <img class="img-fluid"src="https://static.igem.org/mediawiki/2020/c/cb/T--Calgary--Pipeline_Hover1.png" />
 +
                    <div class="sources--cms">
 +
                    </div>
 +
 
 +
                </div></a>
 +
</div>
 +
 
 +
 
 +
 
 +
<div class="col-lg-2 col-md-2 col-sm-4 col-xs-4 expand-on-hover" > <a target="blank" href="https://2020.igem.org/Team:Calgary/Bioreactor">
 +
                <div class="container__sources">
 +
                    <img class="img-fluid"src="https://static.igem.org/mediawiki/2020/6/6d/T--Calgary--Pipeline_Hover2.png" />
 +
                    <div class="sources--cms">
 +
                    </div>
 +
 
 +
 
 +
                </div></a>
 
              
 
              
 +
</div>
 +
<div class="col-lg-2 col-md-2 col-sm-4 col-xs-4 expand-on-hover" > <a target="blank" href="https://2020.igem.org/Team:Calgary/Biocontainment_Engineering">
 +
                <div class="container__sources">
 +
                    <img class="img-fluid"src="https://static.igem.org/mediawiki/2020/a/a9/T--Calgary--Pipeline_Hover3.png"  />
 +
                    <div class="sources--cms">
 +
                    </div>
 +
 +
                </div></a>
 +
</div>
 +
<div class="col-lg-2 col-md-2 col-sm-4 col-xs-4 expand-on-hover" > <a target="blank" href="https://2020.igem.org/Team:Calgary/Entrepreneurship">
 +
                <div class="container__sources">
 +
                    <img class="img-fluid"src="https://static.igem.org/mediawiki/2020/e/e6/T--Calgary--Pipeline_Hover4.png"  />
 +
                    <div class="sources--cms">
 +
                    </div>
 +
 +
                </div></a>
 +
</div>
 +
<div class="col-lg-2 col-md-2 col-sm-4 col-xs-4 expand-on-hover" > <a target="blank" href="https://2020.igem.org/Team:Calgary/Randys_Cell">
 +
                <div class="container__sources">
 +
                    <img class="img-fluid"src="https://static.igem.org/mediawiki/2020/d/dc/T--Calgary--Pipeline_Hover5.png" />
 +
                    <div class="sources--cms">
 +
                    </div>
 +
 +
                </div></a>
 +
</div>
 +
<div class="col-lg-2 col-md-2 col-sm-4 col-xs-4 expand-on-hover" > <a target="blank" href="https://2020.igem.org/Team:Calgary/Thymol_Engineering">
 +
                <div class="container__sources">
 +
                    <img class="img-fluid"src="https://static.igem.org/mediawiki/2020/d/d2/T--Calgary--Pipeline_Hover6.png" />
 +
                    <div class="sources--cms">
 +
                    </div>
 +
 +
                </div></a>
 +
</div>
 +
 +
</div>
 +
</div>
 +
<br>
 +
<hr>
 +
 +
<div class = "part-design break" id="gold">
 +
        <h2>REFERENCES</h2>
 +
 +
<p>Bishwajit, G., Sarker, S., Kpoghomou, M., Gao, H., Jun, L., Yin, D., and Ghosh, S. (2013). Self-sufficiency in rice and food security: A South Asian Perspective. Agric & Food Secur. 2(10). 10.1186/2048-7010-2-10</p>
 +
 +
<p>Bruins, M., & Kraemer, K. (2013). Public health programmes for vitamin A deficiency control. Community eye health, 26(84), 69–70. https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3936688/</p>
 +
 +
<p>Lenz, R. (2015). Golden Rice in India: Is it necessary? What are impediments to adoption? Genetic Literacy Project. https://geneticliteracyproject.org/2015/05/26/golden-rice-in-india-is-it-necessary-what-are-impediments-to-adoption/.</p>
 +
 +
<p>National Institutes of Health. (2020). Vitamin A. National Institutes of Health. https://ods.od.nih.gov/factsheets/VitaminA-HealthProfessional/</p>
 +
 +
<p>Stevens, G., Bennett, J., Hennocq, Q., Lu, Y., De-Regil, L., Rogers, L., Danaei, G., Li, G., White, R., Flaxman, S., Oehrle, S., Finucane, M., Guerrero, R., Bhutta, Z., Then-Paulino, A., Fawzi, W., Black, R., and Ezzati, M. (2015). Trends and mortality effects of vitamin A deficiency in children in 138 low-income and middle-income countries between 1991 and 2013: a pooled analysis of population based surveys. Lancet Glob. Health. 3(9): 528-536. 10.1016/S2214-109X(15)00039-X</p>
 +
 +
<p>United Nations Children’s Fund. (2000). First Call for Children. United Nations Digital Library. https://digitallibrary.un.org/record/469118?ln=en.</p>
 +
 +
<p>United Nations Children’s Fund (2019). Vitamin A. UNICEF DATA. https://data.unicef.org/topic/nutrition/vitamin-a-deficiency/.</p>
 +
 +
<p>World Health Organization. (2020). Micronutrient Deficiencies. Nutrition. https://www.who.int/nutrition/topics/vad/en/.</p>
 +
 +
<p>Vitamin Angels. (2020). Vitamin A. Vitamin Angels. https://www.vitaminangels.org/vitamin-a-deficiency</p>
 +
</div>
 +
<br>
 +
<hr>
 +
 +
 +
 +
 +
 +
 +
 +
 +
  
        </div>  
+
          </div> <!-- add in new section of CONTENT above this -->
 
       </div>
 
       </div>
 
     </div>
 
     </div>
 
   </body>
 
   </body>
 
</html>
 
</html>
{{Calgary/Footer}}
+
{{Calgary/Imposter-Footer}}

Latest revision as of 20:27, 19 December 2020



Oviita at a Glance




Vitamin A Deficiency

Understanding the Importance of Vitamin A

An estimated 250 million children worldwide are currently suffering from Vitamin A deficiency (WHO, 2020). Vitamin A deficiency, also known as VAD, is one of the leading causes of preventable childhood mortality, also playing roles in causing reproductive issues, reduced immune function, vision loss, and in severe cases, xerophthalmia, the leading cause of preventable childhood blindness (UNICEF, 2019). While VAD has essentially been eradicated in many places around the globe, parts of South Asia and Sub-Saharan Africa are still facing a Vitamin A crisis. It disproportionately harms some of the world’s most vulnerable populations, particularly pregnant women and children. These groups typically lack access to varied diets, due to a variety of socioeconomic and cultural factors.

Figure 1. Colour-coded map depicting areas of no significant prevalence of VAD to areas of high prevalence of VAD.

Vitamin A refers to a group of fat-soluble retinoids, and as a result, it requires fat to be properly absorbed by the body. Vitamin A cannot be synthesized by the body, so it is taken up in two forms: preformed Vitamin A, as found in meat and fish, or provitamin A carotenoids, most commonly in the form of beta-carotene (National Institutes of Health, 2020). Beta-carotene rich foods include green leafy vegetables, such as spinach, and orange vegetables, such as sweet potatoes (National Institutes of Health, 2020). Where preformed Vitamin A can be toxic to the body in high enough concentrations, beta-carotene and other carotenoids do not carry that same risk.

Figure 2. Conversion of beta-carotene to retinol

The low fat diets of the affected South Asian and Sub Saharan African areas also play a role in reduced Vitamin A uptake. For example, up to 70% of a South Asian diet consists solely of rice, a grain with very low lipid content (Bishwajit et al., 2013). Frankly, rice is cheap, making it much more accessible for poorer and rural regions. Many of these areas also lack fortified foods, making it more difficult for the population to obtain the necessary nutrients to maintain health (Vitamin Angels, 2020). Not coincidentally, these demographics are hit hard by Vitamin A deficiency.



THE OVIITA PHILOSOPHY

Expanding Upon Previous Solutions

In 1990, the World Summit for Children called for the ‘virtual elimination of Vitamin A deficiency and its consequences, including blindness’ (UNICEF, 2000). Since then, initiatives such as the Golden Rice Project, Micronutrient Days, and increased biofortification have greatly reduced the prevalence of Vitamin A Deficiency. 39% of people in low and middle income nations were Vitamin A deficient in 1991, compared to 29% in 2013 (Stevens et al., 2015). Despite this vast improvement, many nations in Sub-Saharan Africa and South Asia still see up to 48% of the population suffering from the deficiency and its consequences (Stevens et al., 2015). The aforementioned initiatives to battle VAD were impressive. So why didn’t they seem to work?

The answer lies primarily in the lack of sustainability of these solutions. The Golden Rice Project is a strain of rice genetically modified to produce beta-carotene, a precursor to Vitamin A. Golden Rice, despite all of its potential to be a Vitamin A superfood, still requires lots of time, space, and labour to grow. Most of these areas not only consume rice, but also export it, making it a valuable crop in regards to economic potential. The pushback against golden rice has made nations skeptical in cultivating it, as current GMO containment strategies are mediocre at best. There are fears that countries that start growing Golden Rice might also contaminate white rice exports (Lenz, 2015). Both India and Bangladesh lie within the Top 5 rice-producing nations, so rice exports play a huge role in their economy, as well as in the economy of other South Asian countries (Bishwajit et al. 2013).

Micronutrient Days are popular in regions of Africa, but are unfortunately, few and far between. For example, Burkina Faso has held two “Vitamin A Days” annually, where Vitamin A and other important supplements are given out (Bruins & Kraemer, 2013). But according to Dr. Dia Sanou, there will still be people who will never be able to access these supplements, whether it be due to other afflictions that lessen the uptake of Vitamin A, personal matters that get in the way of attending these micronutrient days, or a lack of infrastructure that prevents easy access to obtaining these supplements. Another problem with Micronutrient Days are that they are based on external infrastructure. Without aid organizations hosting these events, there is no way to obtain Vitamin A supplements.

Biofortification of food is another initiative held in many of these places, but lack of access to a diversified diet also results in a lack of access to fortified food, whether this be due to expenses, distance, or availability.

Figure 3. Vitamin A mitigation strategies

Our conversations with anthropologists, humanitarian organizations, and medical professionals have introduced us to the requirements for effectively tackling VAD. In order to promote autonomy and decrease reliance on external aid organizations, our solution must be practical and simple, providing the tools to set-up and maintain a Vitamin A distribution system within the community. It must be inexpensive and accessible, making use of materials that people can easily obtain. And finally, its implementation must be flexible, allowing it to easily integrate into local conditions and culture.

This is where Oviita comes in.

Our goal is to ensure that by using Oviita, communities are able to independently produce Vitamin A in an easy and accessible manner, eventually leading to the mitigation and elimination of Vitamin A Deficiency.



Our Approach

Introducing Oviita

Oviita is a system involving a food-safe strain of yeast, Y. lipolytica, that has been engineered to produce beta-carotene, a precursor to Vitamin A. When selecting our yeast chassis, we had six major considerations:

To promote sustainability, this yeast has also been engineered to include cellulase enzymes, so it can digest cellulose. Due to this, the Oviita yeast can be grown simply and inexpensively in the community using straw, indigestible grain husks, or other agricultural waste byproducts as food. These sources of cellulose currently go unused, and are sometimes even simply burned in the fields, contributing to air pollution. By diverting this waste material into a valuable resource for cultivating Oviita with small-scale, locally-led production, we empower communities to improve their health and take their nutritional security into their own hands.

Oviita can be cultivated simply and intuitively, using mainly resources individuals already have on hand. A community ‘bioreactor’ provides an easily accessible and contained vessel for the yeast to be cultivated. The yeast can be harvested directly from this vessel, where it can be skimmed off, cooked, and added to any food as an edible supplement. We’ve developed a series of recipes that can be made with the addition of the Oviita yeast to it.

The production of a Vitamin-A rich supplement and developing a vessel for its cultivation is not enough to alleviate the multi-faceted issue of Vitamin A deficiency. So, we set out to hit some other issues that also affect the prevalence of Vitamin A deficiency. In order to ensure that the Oviita yeast is grown in a safe environment and that it would not affect the environment in case of escape, we developed a biocontainment system. To further incorporate Oviita into the community and promote growth, we ideated some Micro-Enterprise opportunities. The Randle’s Cell Testing Device is a field-based method to test for Vitamin A deficiency. And last, but not least, the addition of thymol, an anthelmintic compound, to the yeast, leads to deworming and increased Vitamin A absorption.

To learn more about the many facets of Oviita, click on the pipeline below:





REFERENCES

Bishwajit, G., Sarker, S., Kpoghomou, M., Gao, H., Jun, L., Yin, D., and Ghosh, S. (2013). Self-sufficiency in rice and food security: A South Asian Perspective. Agric & Food Secur. 2(10). 10.1186/2048-7010-2-10

Bruins, M., & Kraemer, K. (2013). Public health programmes for vitamin A deficiency control. Community eye health, 26(84), 69–70. https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3936688/

Lenz, R. (2015). Golden Rice in India: Is it necessary? What are impediments to adoption? Genetic Literacy Project. https://geneticliteracyproject.org/2015/05/26/golden-rice-in-india-is-it-necessary-what-are-impediments-to-adoption/.

National Institutes of Health. (2020). Vitamin A. National Institutes of Health. https://ods.od.nih.gov/factsheets/VitaminA-HealthProfessional/

Stevens, G., Bennett, J., Hennocq, Q., Lu, Y., De-Regil, L., Rogers, L., Danaei, G., Li, G., White, R., Flaxman, S., Oehrle, S., Finucane, M., Guerrero, R., Bhutta, Z., Then-Paulino, A., Fawzi, W., Black, R., and Ezzati, M. (2015). Trends and mortality effects of vitamin A deficiency in children in 138 low-income and middle-income countries between 1991 and 2013: a pooled analysis of population based surveys. Lancet Glob. Health. 3(9): 528-536. 10.1016/S2214-109X(15)00039-X

United Nations Children’s Fund. (2000). First Call for Children. United Nations Digital Library. https://digitallibrary.un.org/record/469118?ln=en.

United Nations Children’s Fund (2019). Vitamin A. UNICEF DATA. https://data.unicef.org/topic/nutrition/vitamin-a-deficiency/.

World Health Organization. (2020). Micronutrient Deficiencies. Nutrition. https://www.who.int/nutrition/topics/vad/en/.

Vitamin Angels. (2020). Vitamin A. Vitamin Angels. https://www.vitaminangels.org/vitamin-a-deficiency