Difference between revisions of "Team:CCU Taiwan/Basic Part"

Line 43: Line 43:
 
   });
 
   });
 
});
 
});
var s = skrollr.init({
+
// The function actually applying the offset
render: function(data) {
+
function offsetAnchor() {
  //Log the current scroll position.
+
  if (location.hash.length !== 0) {
  $('#info').text(data.curTop);
+
    window.scrollTo(window.scrollX, window.scrollY - 90);
}
+
  }
});;
+
}
 +
 
 +
// Captures click events of all <a> elements with href starting with #
 +
$(document).on('click', 'a[href^="#"]', function(event) {
 +
  // Click events are captured before hashchanges. Timeout
 +
  // causes offsetAnchor to be called after the page jump.
 +
  window.setTimeout(function() {
 +
    offsetAnchor();
 +
  }, 0);
 +
});
 +
 
 +
// Set the offset when entering page with hash present in the url
 +
window.setTimeout(offsetAnchor, 0);
 +
 +
$(document).scroll(function () { // remove "$"
 +
    var y = $(this).scrollTop();       
 +
    if (y > 300) {
 +
        $('.indicator').fadeIn();
 +
    }
 +
    else {
 +
        $('.indicator').fadeOut();
 +
    }
 +
});
 
 
 
</script>
 
</script>

Revision as of 21:09, 14 October 2018

Basic Parts

BBa_K2809001
Kozak sequence (Pichia pastoris)

The Kozak sequence initiates the translation in Pichia pastoris. This Sequence is copied directly from pCore1 in reference. The start codon is not included.

BBa_K2809002
Prepro-alpha-factor (codon modified for P. pastoris)

Prepro-alpha-factor is the secretion signal peptide from the yeast α-mating factor. This signal peptide directs expression of secretion of the recombinant protein, therefore, it allows the exportation of it. Once the recombinant protein is in the endoplasmic reticulum (ER) lumen, this secretion signal will be cleaved.

BBa_K2809010
Mature Lac1 (laccase)

This is the codon-optimized version of laccase derived from Pinus taeda (Loblolly pine). Laccase is involved in monolignol dehydrogenation, using oxygen to oxidize their metal centers to enable catalytical phenol oxidation. It is able to produce dimers and oligomers of coniferyl alcohol, which is involved in the early stage of lignification.

The signal peptide has been removed, so the sequence does NOT contain a start codon. Furthermore, it includes HA-tag for Western Blot protein detection and 6*His-tag for protein purification before the stop codon.

BBa_K2809020
Mature Px18 (peroxidase)

BBa_K2809030
Mature Px16 (peroxidase)

Those are the codon-optimized versions of peroxidase derived from Picea abies (Norway spruce). Peroxidases (Px16 and Px18) are involved in monolignol dehydrogenation, using hydrogen peroxide as a substrate. They are able to form polymers from oligomers or dimers, which contribute to lignin polymerization.

The signal peptide has been removed, so the sequence does NOT contain a start codon. Moreover, it includes V5-tag for Western Blot protein detection and 6*His-tag for protein purification before the stop codon.

The signal peptide has been removed, so the sequence does NOT contain a start codon. Furthermore, it includes FLAG-tag for Western Blot protein detection and 6*His-tag for protein purification before the stop codon.