Difference between revisions of "Team:Tuebingen/Art and Design"

 
(40 intermediate revisions by 3 users not shown)
Line 3: Line 3:
 
<html>
 
<html>
 
<script type="text/javascript">
 
<script type="text/javascript">
dias = ['Cellvengers','Lab Art','Lab Prize', 'Humour'];
+
dias = ['Cellvengers','Achievements'];
 
</script>
 
</script>
  
<div id="dia0" class="dia" style="text-align:block;">
+
<div id="dia0" class="dia" style="text-align:center;">
 
<br>
 
<br>
 
+
<p>In hours of waiting and creativity Yvonne and Katerina created our Cellvengers. They accompanied us in times of hardship and in times of joy and became our dear friends. Let us introduce... the Cellvengers!</p>
<div id="carousel"></div>
+
<br/><br/><h4>Supercellfie</h4>
 +
<img id="teamfoto" style="max-width:330px;display: block; margin-left: auto;margin-right: auto;" src="https://static.igem.org/mediawiki/2015/5/5e/Cellfie_Art_Supercellfie.jpeg"/>
 +
<br/><br/><h4>Iron Cell</h4>
 +
<img id="teamfoto" style="max-width:330px;display: block; margin-left: auto;margin-right: auto;" src="https://static.igem.org/mediawiki/2015/0/0c/Cellfie_Art_Ironcellfie.jpeg"/>
 +
<br/><br/><h4>Culk</h4>
 +
<img id="teamfoto" style="max-width:330px;display: block; margin-left: auto;margin-right: auto;" src="https://static.igem.org/mediawiki/2015/5/54/Cellfie_Art_Hulk.jpeg"/>
 +
<br/><br/><h4>Thor Cellson</h4>
 +
<img id="teamfoto" style="max-width:330px;display: block; margin-left: auto;margin-right: auto;" src="https://static.igem.org/mediawiki/2015/2/2c/Cellfie_Art_Thor.jpeg"/>
 +
<br/><br/><h4>Yeasteye</h4>
 +
<img id="teamfoto" style="max-width:330px;display: block; margin-left: auto;margin-right: auto;" src="https://static.igem.org/mediawiki/2015/3/3d/Cellfie_Art_Hawkeye.jpeg"/>
 +
<br/><br/><h4>Captain Cellmerica</h4>
 +
<img id="teamfoto" style="max-width:330px;display: block; margin-left: auto;margin-right: auto;" src="https://static.igem.org/mediawiki/2015/a/a1/Cellfie_Art_Cellfie_America.jpeg"/>
 +
<br/><br/><h4>Black Cellow</h4>
 +
<img id="teamfoto" style="max-width:330px;display: block; margin-left: auto;margin-right: auto;" src="https://static.igem.org/mediawiki/2015/e/ee/Cellfie_Art_BlackWidow.jpeg"/>
 +
<br/><br/><h4>Batcell</h4>
 +
<img id="teamfoto" style="max-width:330px;display: block; margin-left: auto;margin-right: auto;" src="https://static.igem.org/mediawiki/2015/3/37/Cellfie_Art_Batman.jpeg"/>
  
 
</div>
 
</div>
  
<div id="dia1" class="dia" style="text-align:block;">
 
</div>
 
  
<div id="dia2" class="dia" style="text-align:block;">
+
<div id="dia1" class="dia">  
</div>
+
<h2>Achievements</h2>
  
 +
<p>We were able to design a fully functional cre reporter cassette and transformed a functional Cre recombinase, which we could show by Luciferase assays. We could show that Dronpa is photoswitchable and built a device which could theoretically photoactivate Dronpa, if using higher light intensities. We could show this using fluorescence microscopy.</p>
  
<script type="text/javascript">
+
<p>We constructed a caged Cre recombinase, which is inactivated by dimerizing Dronpa proteins, attached at N- and C-terminus by linkers with varying length.</p>
var imgURLs = ['https://static.igem.org/mediawiki/2015/5/5e/Cellfie_Art_Supercellfie.jpeg','https://static.igem.org/mediawiki/2015/0/0c/Cellfie_Art_Ironcellfie.jpeg','https://static.igem.org/mediawiki/2015/5/54/Cellfie_Art_Hulk.jpeg','https://static.igem.org/mediawiki/2015/2/2c/Cellfie_Art_Thor.jpeg','https://static.igem.org/mediawiki/2015/3/3d/Cellfie_Art_Hawkeye.jpeg','https://static.igem.org/mediawiki/2015/a/a1/Cellfie_Art_Cellfie_America.jpeg','https://static.igem.org/mediawiki/2015/e/ee/Cellfie_Art_BlackWidow.jpeg','https://static.igem.org/mediawiki/2015/e/ee/Cellfie_Art_BlackWidow.jpeg']
+
  
function createCarousel() {
+
<p>We improved the already in the registry existing pRS315 (<a href="http://parts.igem.org/Part:BBa_K106006">BBa_K106006</a>) part by removing all RFC10 restriction sites in the plasmid backbone and replacing the MCS. Furthermore, we modified the pRS313 and pRS316 plasmid in the same way</p>
var carousel = document.getElementById('carousel');
+
slots = [];
+
carousel.style.cssText = 'width:100%;text-align:center;height:300px;position:relative;margin-top:40px;';
+
for (var i=0;i<imgURLs.length;i++) {
+
var div = document.createElement('div');
+
var img = document.createElement('div');
+
img.style.cssText = 'background-size:contain;height:250px;background-repeat:no-repeat;background-position:center;background-color:black;transition:transform 1s;';
+
div.style.cssText = 'height:250px;display:inline;width:200px;display:none;perspective:400px;position:absolute;top:0px;left:50%;';
+
img.style.backgroundImage = 'url('+imgURLs[i]+')';
+
div.appendChild(img);
+
div.image = img;
+
slots.push(div);
+
carousel.appendChild(div);
+
}
+
var left = document.createElement('div');
+
left.style.cssText = 'position:absolute;top:0px;bottom:0px;left:0px;right:50%;z-index:100;cursor:pointer;';
+
left.onmouseover = function() {this.interval = window.setInterval('rotateCarousel(-10)',200);};
+
left.onmouseout = function() {window.clearInterval(this.interval);};
+
carousel.appendChild(left);
+
var right = document.createElement('div');
+
right.style.cssText = 'position:absolute;top:0px;bottom:0px;right:0px;left:50%;z-index:100;cursor:pointer;';
+
right.onmouseover = function() {this.interval = window.setInterval('rotateCarousel(10)',1000);};
+
carousel.appendChild(right);
+
slotPos = [315,0,45,90,135,180,225,270];
+
renderCarousel();
+
/*slots[0].style.display = 'block';
+
slots[0].style.marginLeft = '-325px';
+
slots[0].image.style.transform = 'rotateY(-45deg)';
+
slots[1].style.display = 'block';
+
slots[1].style.marginLeft = '-100px';
+
slots[1].image.style.transform = 'rotateY(0deg)';
+
slots[2].style.display = 'block';
+
slots[2].style.marginLeft = '125px';
+
slots[2].image.style.transform = 'rotateY(45deg)';*/
+
}
+
  
function rotateCarousel(step) {
+
<p>We improved the characterization of the Split-Intein(<a href="http://parts.igem.org/Part:BBa_K1483003"BBa_>K1483003</a>)-NAGA (<a href="http://parts.igem.org/Part:BBa_K1483000">BBa_K1483000</a>) construct by expressing the construct and showing that the Split-Intein is working.</p>
for (var i=0;i<slots.length;i++) {
+
 
slotPos[i]+=step;
+
<p>We improved the characterization of the pSUC promotor (<a href="http://parts.igem.org/Part:BBa_K950003">BBa_K950003</a>) part by using different sugars and concentrations</p>
if (slotPos[i]>=360) slotPos[i]-=360;
+
 
if (slotPos[i]<0) slotPos[i] = 360-slotPos[i];
+
<p>We improved the characterization of the pFET3 promoter (<a href="http://parts.igem.org/Part:BBa_K950000">BBa_K950000</a>) and the mPRs (<a href="http://parts.igem.org/Part:BBa_K950006">BBa_K950006</a> and <a href="http://parts.igem.org/Part:BBa_K950007">BBa_K950007</a>) by co-transfecting yeast cells with these constructs and observe the effect of the mPRs on the pFET3 promoter</p>
}
+
 
renderCarousel();
+
<p>We shipped a total of 27 parts to the registry (part numbers <a href="http://parts.igem.org/Part:BBa_K1680000">BBa_K1680000</a> to <a href="http://parts.igem.org/Part:BBa_K1680027">BBa_K1680027</a>)</p>
}
+
 
 +
<p>We collaborated with Team Freiburg, Team TU_Darmstadt and Team Valencia_UPV. Team Freiburg received the Spy-peptide from us to use in their experiments, while we helped TU Darmstadt with their LabSurfing study. Team Valencia_UPV and we collaborated on the modelling part.</p>
 +
 
 +
</div>
  
function renderCarousel() {
 
for (var i=0;i<slots.length;i++) {
 
console.log(slotPos[i]);
 
if (slotPos[i] < 180)  if (slotPos[i] > 0) slots[i].style.display = 'block';
 
else slots[i].style.display = 'none';
 
var angle = slotPos[i];
 
var shift = -100;
 
if (angle >90) shift = -100-(225/90*(180-angle));
 
else shift = -100+225/90*(angle);
 
console.log('angle: '+angle);
 
console.log('shift: '+shift);
 
slots[i].image.style.transform = 'rotateY('+angle+'deg)';
 
slots[i].style.marginLeft = shift+'px';
 
}
 
}
 
  
createCarousel();
 
 
</script>
 
</script>
 
</html>
 
</html>

Latest revision as of 12:13, 17 November 2015

<
>


In hours of waiting and creativity Yvonne and Katerina created our Cellvengers. They accompanied us in times of hardship and in times of joy and became our dear friends. Let us introduce... the Cellvengers!



Supercellfie



Iron Cell



Culk



Thor Cellson



Yeasteye



Captain Cellmerica



Black Cellow



Batcell

Achievements

We were able to design a fully functional cre reporter cassette and transformed a functional Cre recombinase, which we could show by Luciferase assays. We could show that Dronpa is photoswitchable and built a device which could theoretically photoactivate Dronpa, if using higher light intensities. We could show this using fluorescence microscopy.

We constructed a caged Cre recombinase, which is inactivated by dimerizing Dronpa proteins, attached at N- and C-terminus by linkers with varying length.

We improved the already in the registry existing pRS315 (BBa_K106006) part by removing all RFC10 restriction sites in the plasmid backbone and replacing the MCS. Furthermore, we modified the pRS313 and pRS316 plasmid in the same way

We improved the characterization of the Split-Intein(K1483003)-NAGA (BBa_K1483000) construct by expressing the construct and showing that the Split-Intein is working.

We improved the characterization of the pSUC promotor (BBa_K950003) part by using different sugars and concentrations

We improved the characterization of the pFET3 promoter (BBa_K950000) and the mPRs (BBa_K950006 and BBa_K950007) by co-transfecting yeast cells with these constructs and observe the effect of the mPRs on the pFET3 promoter

We shipped a total of 27 parts to the registry (part numbers BBa_K1680000 to BBa_K1680027)

We collaborated with Team Freiburg, Team TU_Darmstadt and Team Valencia_UPV. Team Freiburg received the Spy-peptide from us to use in their experiments, while we helped TU Darmstadt with their LabSurfing study. Team Valencia_UPV and we collaborated on the modelling part.