Team:SDU-Denmark

From 2012.igem.org

(Difference between revisions)
(Prototype team page)
 
(141 intermediate revisions not shown)
Line 1: Line 1:
-
<!-- *** What falls between these lines is the Alert Box!  You can remove it from your pages once you have read and understood the alert *** -->
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
 +
<head>
 +
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-
<html>
+
<!-- //////////// Site Name //////////// -->
-
<div id="box" style="width: 700px; margin-left: 137px; padding: 5px; border: 3px solid #000; background-color: #fe2b33;">
+
<title>iGEM TEAM ::: SDU-DENMARK</title>
-
<div id="template" style="text-align: center; font-weight: bold; font-size: large; color: #f6f6f6; padding: 5px;">
+
-
This is a template page. READ THESE INSTRUCTIONS.
+
-
</div>
+
-
<div id="instructions" style="text-align: center; font-weight: normal; font-size: small; color: #f6f6f6; padding: 5px;">
+
-
You are provided with this team page template with which to start the iGEM season.  You may choose to personalize it to fit your team but keep the same "look." Or you may choose to take your team wiki to a different level and design your own wiki.  You can find some examples <a href="https://2009.igem.org/Help:Template/Examples">HERE</a>.
+
-
</div>
+
-
<div id="warning" style="text-align: center; font-weight: bold; font-size: small; color: #f6f6f6; padding: 5px;">
+
-
You <strong>MUST</strong> have all of the pages listed in the menu below with the names specified. PLEASE keep all of your pages within your teams namespace. 
+
-
</div>
+
-
</div>
+
-
</html>
+
-
<!-- *** End of the alert box *** -->
+
<!-- //////////// Website Icon //////////// -->
 +
<link rel="shortcut icon" href="favicon.ico" />
 +
<!-- //////////// STYLESSHEETS //////////// -->
 +
<link rel="stylesheet" type="text/css" href="https://2012.igem.org/Team:SDU-Denmark/style?action=raw&amp;ctype=text/css">
-
{|align="justify"
+
<link rel="stylesheet" href="https://2012.igem.org/Team:SDU-Denmark/nivo-slider.css?action=raw&amp;ctype=text/css" type="text/css" media="screen" />
-
|You can write a background of your team here. Give us a background of your team, the members, etc. Or tell us more about something of your choosing.
+
-
|[[Image:SDU-Denmark_logo.png|200px|right|frame]]
+
-
|-
+
-
|
+
-
''Tell us more about your project. Give us background.  Use this as the abstract of your project.  Be descriptive but concise (1-2 paragraphs)''
+
-
|[[Image:SDU-Denmark_team.png|right|frame|Your team picture]]
+
-
|-
+
-
|
+
-
|align="center"|[[Team:SDU-Denmark | Team SDU-Denmark]]
+
-
|}
+
-
<!--- The Mission, Experiments --->
 
-
{| style="color:#1b2c8a;background-color:#0c6;" cellpadding="3" cellspacing="1" border="1" bordercolor="#fff" width="62%" align="center"
+
 
-
!align="center"|[[Team:SDU-Denmark|Home]]
+
<!-- //////////// SCRIPTS //////////// -->
-
!align="center"|[[Team:SDU-Denmark/Team|Team]]
+
<!-- :......:jquery [DEACTIVATED].....: -->
-
!align="center"|[https://igem.org/Team.cgi?year=2012&team_name=SDU-Denmark Official Team Profile]
+
<!--<script type="text/javascript" src="https://2012.igem.org/Team:SDU-Denmark/jquery.min.js?action=raw&amp;ctype=text/javascript"></script> -->
-
!align="center"|[[Team:SDU-Denmark/Project|Project]]
+
 
-
!align="center"|[[Team:SDU-Denmark/Parts|Parts Submitted to the Registry]]
+
<!-- :......:NIVO.....: -->
-
!align="center"|[[Team:SDU-Denmark/Modeling|Modeling]]
+
<script type="text/javascript" src="https://2012.igem.org/Team:SDU-Denmark/jquery.nivo.slider.pack.js?action=raw&amp;ctype=text/javascript" ></script>
-
!align="center"|[[Team:SDU-Denmark/Notebook|Notebook]]
+
 
-
!align="center"|[[Team:SDU-Denmark/Safety|Safety]]
+
<!-- :......:JS EASING.....: -->
-
!align="center"|[[Team:SDU-Denmark/Attributions|Attributions]]
+
<script type="text/javascript" src="https://2012.igem.org/Team:SDU-Denmark/jquery.easing.1.3.js?action=raw&amp;ctype=text/javascript"></script>
-
|}
+
 
 +
 
 +
<!-- Need these two for gallery -->
 +
 
 +
<!-- :......:PIROBOX.....: -->
 +
<script type="text/javascript" src="https://2012.igem.org/Team:SDU-Denmark/pirobox.min.js?action=raw&amp;ctype=text/javascript">
 +
</script>
 +
 
 +
<!-- :......:SLIDING LABS.....: -->
 +
<script src="https://2012.igem.org/Team:SDU-Denmark/jquery.slidinglabels.js?action=raw&amp;ctype=text/javascript" type="text/javascript">
 +
</script>
 +
 
 +
<!-- //gallery scripts-->
 +
 
 +
<script type="text/javascript">
 +
$(document).ready(function() {
 +
$().piroBox({
 +
my_speed: 400, //animation speed
 +
bg_alpha: 0.6, //background opacity
 +
slideShow : true, // true == slideshow on, false == slideshow off
 +
slideSpeed : 4, //slideshow duration in seconds(3 to 6 Recommended)
 +
close_all : '.piro_close,.piro_overlay'// add class .piro_overlay(with comma)if you want overlay click close piroBox
 +
 
 +
});
 +
});
 +
</script>
 +
 
 +
<!-- //////////// Settings for fixed sidebar layout //////////// -->
 +
 
 +
<script>
 +
 
 +
$(function() {
 +
 
 +
    var $sidebar  = $("#sidenav"),
 +
        $window1    = $(window),
 +
        offset    = $sidebar.offset(),
 +
        topPadding = 15;
 +
 
 +
    $window1.scroll(function() {
 +
        if ($window1.scrollTop() > offset.top + 250 ) {
 +
            $sidebar.stop().animate({
 +
                marginTop: $window1.scrollTop() - (offset.top + topPadding + 230 )
 +
            });
 +
        } else {
 +
            $sidebar.stop().animate({
 +
                marginTop: 0
 +
            });
 +
        }
 +
    });
 +
   
 +
});
 +
</script>
 +
 
 +
 
 +
<script type="text/javascript" src="https://2012.igem.org/Team:SDU-Denmark/smoothscroll.js?action=raw&amp;ctype=text/javascript"></script>
 +
 
 +
<!-- //////////// Settings for Nivo Slider //////////// -->
 +
<script type="text/javascript">
 +
$(window).load(function() {
 +
$('#slider').nivoSlider({
 +
effect:'random',
 +
slices:15,
 +
animSpeed:500,
 +
pauseTime:6000,
 +
startSlide:0, //Set starting Slide (0 index)
 +
directionNav:true, //Next &amp; Prev
 +
directionNavHide:true, //Only show on hover
 +
controlNav:true, //1,2,3...
 +
controlNavThumbs:false, //Use thumbnails for Control Nav
 +
controlNavThumbsSearch: '.jpg', //Replace this with...
 +
controlNavThumbsReplace: '_thumb.jpg', //...this in thumb Image src
 +
keyboardNav:true, //Use left &amp; right arrows
 +
pauseOnHover:true, //Stop animation while hovering
 +
manualAdvance:false, //Force manual transitions
 +
captionOpacity:0.8, //Universal caption opacity
 +
beforeChange: function(){},
 +
afterChange: function(){},
 +
slideshowEnd: function(){} //Triggers after all slides have been shown
 +
});
 +
});
 +
</script>
 +
 
 +
<script type="text/javascript">
 +
    $(document).ready(function () {
 +
 
 +
            // transition effect
 +
            style = 'easeOutBounce';
 +
 
 +
            // if the mouse hover the image
 +
            $('.photo').hover(
 +
                    function() {
 +
                            //display heading and caption
 +
                            $(this).children('div:first').stop(false,true).animate({top:0},{duration:600, easing: style});
 +
                            $(this).children('div:last').stop(false,true).animate({bottom:0},{duration:600, easing: style});
 +
                    },
 +
 
 +
                    function() {
 +
                            //hide heading and caption
 +
                            $(this).children('div:first').stop(false,true).animate({top:-50},{duration:600, easing: style});
 +
                            $(this).children('div:last').stop(false,true).animate({bottom:-50},{duration:600, easing: style});
 +
                    }
 +
            );
 +
 
 +
    });
 +
</script>
 +
 
 +
<script type="text/javascript">
 +
$(function(){
 +
 
 +
$('#contactform').slidinglabels({
 +
 +
/* these are all optional */
 +
topPosition  : '8px',  // how far down you want each label to start
 +
leftPosition : '8px',  // how far left you want each label to start
 +
axis        : 'x',    // can take 'x' or 'y' for slide direction
 +
speed        : 'fast'  // can take 'fast', 'slow', or a numeric value
 +
 
 +
});
 +
 
 +
});
 +
</script>
 +
 
 +
<!-- script for fixed background-->
 +
<script>
 +
$(window).load(function() {   
 +
 
 +
var theWindow        = $(window),
 +
    $bg              = $("#bg"),
 +
    aspectRatio      = $bg.width() / $bg.height();
 +
       
 +
function resizeBg() {
 +
 +
if ( (theWindow.width() / theWindow.height()) < aspectRatio ) {
 +
    $bg
 +
    .removeClass()
 +
    .addClass('bgheight');
 +
} else {
 +
    $bg
 +
    .removeClass()
 +
    .addClass('bgwidth');
 +
}
 +
 +
}
 +
                 
 +
theWindow.resize(function() {
 +
resizeBg();
 +
}).trigger("resize");
 +
 
 +
});
 +
</script>
 +
 
 +
 
 +
</head>
 +
 
 +
<body>
 +
 
 +
<!-- //////////background image/////////// -->
 +
<img src="https://static.igem.org/mediawiki/2012/6/6c/Body_bg13.jpg" id="bg" alt="courtesy of NIAID">
 +
 
 +
<!-- //////////// Container *Holds Left and Right Colums Together* //////////// -->
 +
<div class="container">
 +
 
 +
<!-- ////////////HEADER\\\\\\\\\\ -->
 +
<div class="header" id="TopHeader">
 +
<!-- //////////// NIVO SLIDER //////////// -->
 +
            <div id="slider">
 +
                 
 +
 +
<a href="https://2012.igem.org/Team:SDU-Denmark/Project/Overview">
 +
<img src="https://static.igem.org/mediawiki/2012/4/4f/SDU2012slide01.jpg" alt="" /></a>
 +
<img src="https://static.igem.org/mediawiki/2012/9/9a/SDU2012slide02.jpg" alt="" />
 +
<img src="https://static.igem.org/mediawiki/2012/6/6e/SDU2012slide03.jpg" alt="" />
 +
<img src="https://static.igem.org/mediawiki/2012/9/91/SDU2012slide04.jpg" alt="" />
 +
<img src="https://static.igem.org/mediawiki/2012/6/67/SDU2012slide05.jpg" alt="" />
 +
<img src="https://static.igem.org/mediawiki/2012/c/c7/SDU2012slide06.jpg" alt="" />
 +
<img src="https://static.igem.org/mediawiki/2012/9/91/SDU2012slide07.jpg" alt="" />
 +
<img src="https://static.igem.org/mediawiki/2012/2/27/SDU2012slide08.jpg" alt="" />
 +
<img src="https://static.igem.org/mediawiki/2012/f/ff/SDU2012slide09.jpg" alt="" />
 +
<img src="https://static.igem.org/mediawiki/2012/7/7f/SDU2012slide10.jpg" alt="" />
 +
<img src="https://static.igem.org/mediawiki/2012/b/bf/SDU2012slide11.jpg" alt="" />
 +
<img src="https://static.igem.org/mediawiki/2012/3/35/SDU2012slide12.jpg" alt="" />
 +
<img src="https://static.igem.org/mediawiki/2012/e/ed/SDU2012slide13.jpg" alt=""
 +
title="see more in our gallery" />
 +
                               
 +
            </div>
 +
</div>
 +
   
 +
    <!-- //////////// SideNavbar *Everything in Left-Hand Column* //////////// -->
 +
    <div id="sidenav" >
 +
    <!--<img src="images/logo.gif" alt="" class="logo" />/ -->
 +
       
 +
        <!-- //////////// MAIN NAVIGATION //////////// -->
 +
 +
<!--\\\\ ACCORDION MENU ////-->
 +
 
 +
 
 +
<iframe src="https://2012.igem.org/Team:SDU-Denmark/menu" frameborder="0" height="1000" width="200" scrolling="no"  ALLOWTRANSPARENCY="true">
 +
  <p>Your browser does not support iframes.</p>
 +
</iframe>
 +
 
 +
 +
<!--\\\\ACCORDION MENU////-->
 +
 
 +
    </div><!-- //sidenav -->
 +
 +
<!-- //////////// Sidenav Footer //////////// -->
 +
        <div id="footer">
 +
 
 +
            The iGEM Team of University of Southern Denmark 2012
 +
<font color="FF6600" ><b>igem.sdu.2012@gmail.com</b></font>
 +
        </div><!-- //footer -->
 +
 +
 +
    <!-- //////////// Anchor used to scroll to HOME //////////// -->
 +
    <a name="home"></a>
 +
   
 +
    <!-- //////////// Contenta *Everything in Right-Hand Column* //////////// -->
 +
    <div id="contenta">
 +
 +
 
 +
<!-- //////////// Pictogrammer \\\\\\\\\\ -->
 +
<a href="https://2012.igem.org/Team:SDU-Denmark/Project/Overview" title=""><img src="https://static.igem.org/mediawiki/2012/9/95/Projectcqts2.gif" alt="" title="Project" class="picto" id=""></img></a>
 +
<a href="https://2012.igem.org/Team:SDU-Denmark/Project/BioBricks" title=""><img src="https://static.igem.org/mediawiki/2012/9/9a/BioBricks.gif" alt="" title="BioBricks" class="picto" id=""></img></a>
 +
<a href="https://2012.igem.org/Team:SDU-Denmark/labwork/Testing" title="Testing"><img src="https://static.igem.org/mediawiki/2012/3/32/Resultsqts.gif" alt="" title="Testing" class="picto"id="" ></img></a>
 +
 
 +
<a href="https://2012.igem.org/Team:SDU-Denmark/Ethics/Introduction" title=""><img src="https://static.igem.org/mediawiki/2012/1/19/Ethicsqbs.gif" alt="" title="Ethics" class="picto" id="" ></img></a>
 +
<a href="https://2012.igem.org/Team:SDU-Denmark/collaboration/Overview" title=""><img src="https://static.igem.org/mediawiki/2012/5/5a/Sponsorsqts.gif" alt="" title="Collaboration" class="picto" id=""></img></a>
 +
 
 +
<a href="https://2012.igem.org/Team:SDU-Denmark/Project/Achievements" title=""><img src="https://static.igem.org/mediawiki/2012/0/07/Pokal.gif" alt="" title="Achievements" class="picto" id=""></img></a>
 +
 +
<!-- /////////  /Pictogrammer \\\\\\\\\\ -->
 +
 +
<!-- /// velkomst ////-->
 +
 
 +
 
 +
<h1>Sucrose Limitation and Inulin Metabolism</h1>
 +
 
 +
<h2> Abstract</h2>
 +
<p>
 +
Obesity is associated with a low-grade inflammatory response, which among other things, is triggered by bacterial plasma lipopolysaccharide (LPS).  A high-energy diet, increases the amount of LPS-producing gut microbiota, and increased LPS levels has been observed in obese individuals. By inducing changes in the gut microbiota by prebiotics, like inulin, it is possible to decrease the plasma LPS level. This is associated with the stimulation of bifidobacterial growth. We have designed a novel approach to address this issue of plasma LPS, by probioticly induce changes in the gut flora by genetically modifying a bacteria to produce plant originated inulin. We cloned the two genes encoding sucrose:sucrose fructosyltransferase (SST) and fructan:fructan fructosyltransferase (FFT) from the Jerusalem artichoke into a E. coli, where it will produce inulin by using sucrose as an acceptor molecules. In the future this construct should be introduced by a probiotic lactobacillus, into the gut.
 +
</p>
 +
 
 +
<center><img src="https://static.igem.org/mediawiki/2012/6/6f/IGEM_033.gif" width="100%" /></center>
 +
<br/><br/>
 +
<h2>The story</h2>
 +
<p>
 +
<i>The team consists entirely of undergraduates and we started out with almost no experience in lab – Most of our supervisors were on vacation for the first part of our lab time, so we started from square one.<br/><br/>
 +
We have chosen to focus on the outreach and documentation section. Therefore, we have loads of videos, interviews and photos. <br/><br/>
 +
 
 +
Research includes many more aspects than most people expect. The wet lab is extremely important, but many teams miss an important part of what iGEM is also about - spreading the message.
 +
We, at SDU, see ourselves as pioneers in the field of Human Practices. It is a theme of great concern for the SDU iGEM Team. Therefore we have decided to make a big effort in many different areas. <br/>
 +
We've gained a lot of PR coverage, had extensive outreach, made cooperation across Germany, Scandinavia and Canada amongst others. Furthermore, we have processed philosophical thoughts about our role in society as researchers. As a novelty, in iGEM auspices, we have included marketing and law, into our project as a focal point for our project.</i></p>
 +
 
 +
</br></br>
 +
<h2>Not a Scientist? Here we Present the Translated Version of our Abstract</h2>
 +
<p>
 +
Obesity and its related disorders are a worldwide problem that fx costs america billions of dollars each year.
 +
Literature suggests that a high-energy diet is the reason for obesity, not only because the body is unable to use all the energy, but in fact because the “bad” bacteria in your gut feeds on it.
 +
The jerusalem artichoke produces a sugar fiber called inulin, which apart from being non-digestible to humans, helps the good bacteria in the gut to grow and is beneficial in the prevention of colon cancer.
 +
From this information we decided to produce a beneficial (probiotic) bacteria that can convert table sugar (sucrose) into this inulin fiber. If we are successful in introducing this bacteria to the human gut, we can apply many beneficial aspects relating to obesity, such as decreased hunger, fat mass, body weight, inflammations and increased satisfaction from eating.
 +
<p>
 +
 
 +
 
 +
<h1>Featured video</h1>
 +
<p>This <a href="https://2012.igem.org/Team:SDU-Denmark/collaboration/podcast">short documentary</a> is all about the ethical aspects of dealing and working with genetically modified organisms(GMO) </p>
 +
 
 +
<iframe width="680" height="383" src="http://www.youtube.com/embed/f7QzTsBmq4Y" frameborder="0" allowfullscreen></iframe>
 +
 
 +
<p>
 +
Watch more videos in our <a href="https://2012.igem.org/Team:SDU-Denmark/Media/videogallery">video gallery<a/>
 +
</p>
 +
<!--
 +
<div id="contentcolumleft">
 +
           
 +
           
 +
           
 +
            <h2>Welcome to My Online Portfolio, Have a Look Around.</h2>
 +
            <p>Commoveo wisi nulla pala illum melior quis. Et luptatum validus wisi ingenium humo quidne, eros lucidus dolore ea vel amet. Capto, praemitto singularis tation duis consequat. Jus vulputate ingenium mauris ut, vero. Enim suscipit exerci eligo dolus decet elit transverbero. </p>
 +
            <p>Opto tego, distineo luptatum, amet virtus ideo bene in, vindico eum. Voco, proprius, tation jugis dolore consequat, adipiscing iusto eu, ingenium augue nimis, nostrud, lucidus. Qui tristique uxor ibidem iriure bis praesent os. Consequat zelus pagus abdo augue demoveo odio jus vel. </p>
 +
           
 +
            <h2>Opto tego, distineo luptatum</h2>
 +
            <p>Commoveo wisi nulla pala illum melior quis. Et luptatum validus wisi ingenium humo quidne, eros lucidus dolore ea vel amet. Capto, praemitto singularis tation duis consequat. Jus vulputate ingenium mauris ut, vero. Enim suscipit exerci eligo dolus decet elit transverbero. </p>
 +
            <p>Opto tego, distineo luptatum, amet virtus ideo bene in, vindico eum. Voco, proprius, tation jugis dolore consequat, adipiscing iusto eu, ingenium augue nimis, nostrud, lucidus. Qui tristique uxor ibidem iriure bis praesent os. Consequat zelus pagus abdo augue demoveo odio jus vel. </p>
 +
</div>
 +
 +
<div id="contentcolumleft">
 +
<h2>This is a test</h2>
 +
<p> and now to put some text in </p>
 +
<p>Commoveo wisi nulla pala illum melior quis. Et luptatum validus wisi ingenium humo quidne, eros lucidus dolore ea vel amet. Capto, praemitto singularis tation duis consequat. Jus vulputate ingenium mauris ut, vero. Enim suscipit exerci eligo dolus decet elit transverbero. </p>
 +
<p>Opto tego, distineo luptatum, amet virtus ideo bene in, vindico eum. Voco, proprius, tation jugis dolore consequat, adipiscing iusto eu, ingenium augue nimis, nostrud, lucidus. Qui tristique uxor ibidem iriure bis praesent os. Consequat zelus pagus abdo augue demoveo odio jus vel. </p>
 +
 +
<h2>Opto tego, distineo luptatum</h2>
 +
<p>Commoveo wisi nulla pala illum melior quis. Et luptatum validus wisi ingenium humo quidne, eros lucidus dolore ea vel amet. Capto, praemitto singularis tation duis consequat. Jus vulputate ingenium mauris ut, vero. Enim suscipit exerci eligo dolus decet elit transverbero. </p>
 +
<p>Opto tego, distineo lupt
 +
 +
 +
</div>
 +
 
 +
-->
 +
 
 +
 +
    <!-- //////////// Anchor used to scroll to PORTFOLIO //////////// -->
 +
 +
    <!-- //////////// Anchor used to scroll to SERVICES //////////// -->
 +
   
 +
    <!-- //////////// Anchor used to scroll to CONTACT //////////// -->       
 +
   
 +
            <div class="clearall"></div><!-- //clearall -->
 +
           
 +
            <div id="footfiller">
 +
 
 +
            </div><!-- //footfiller -->
 +
           
 +
    </div><!-- //contenta -->
 +
   
 +
</div><!-- //container -->
 +
</body>
 +
</html>

Latest revision as of 22:11, 8 October 2012

iGEM TEAM ::: SDU-DENMARK courtesy of NIAID

Sucrose Limitation and Inulin Metabolism

Abstract

Obesity is associated with a low-grade inflammatory response, which among other things, is triggered by bacterial plasma lipopolysaccharide (LPS). A high-energy diet, increases the amount of LPS-producing gut microbiota, and increased LPS levels has been observed in obese individuals. By inducing changes in the gut microbiota by prebiotics, like inulin, it is possible to decrease the plasma LPS level. This is associated with the stimulation of bifidobacterial growth. We have designed a novel approach to address this issue of plasma LPS, by probioticly induce changes in the gut flora by genetically modifying a bacteria to produce plant originated inulin. We cloned the two genes encoding sucrose:sucrose fructosyltransferase (SST) and fructan:fructan fructosyltransferase (FFT) from the Jerusalem artichoke into a E. coli, where it will produce inulin by using sucrose as an acceptor molecules. In the future this construct should be introduced by a probiotic lactobacillus, into the gut.



The story

The team consists entirely of undergraduates and we started out with almost no experience in lab – Most of our supervisors were on vacation for the first part of our lab time, so we started from square one.

We have chosen to focus on the outreach and documentation section. Therefore, we have loads of videos, interviews and photos.

Research includes many more aspects than most people expect. The wet lab is extremely important, but many teams miss an important part of what iGEM is also about - spreading the message. We, at SDU, see ourselves as pioneers in the field of Human Practices. It is a theme of great concern for the SDU iGEM Team. Therefore we have decided to make a big effort in many different areas.
We've gained a lot of PR coverage, had extensive outreach, made cooperation across Germany, Scandinavia and Canada amongst others. Furthermore, we have processed philosophical thoughts about our role in society as researchers. As a novelty, in iGEM auspices, we have included marketing and law, into our project as a focal point for our project.



Not a Scientist? Here we Present the Translated Version of our Abstract

Obesity and its related disorders are a worldwide problem that fx costs america billions of dollars each year. Literature suggests that a high-energy diet is the reason for obesity, not only because the body is unable to use all the energy, but in fact because the “bad” bacteria in your gut feeds on it. The jerusalem artichoke produces a sugar fiber called inulin, which apart from being non-digestible to humans, helps the good bacteria in the gut to grow and is beneficial in the prevention of colon cancer. From this information we decided to produce a beneficial (probiotic) bacteria that can convert table sugar (sucrose) into this inulin fiber. If we are successful in introducing this bacteria to the human gut, we can apply many beneficial aspects relating to obesity, such as decreased hunger, fat mass, body weight, inflammations and increased satisfaction from eating.

Featured video

This short documentary is all about the ethical aspects of dealing and working with genetically modified organisms(GMO)

Watch more videos in our video gallery