Bacterial microcompartments are organelles consisting of a protein shell that encases enzymes and other proteins
PPK is an enzyme that builds up a polyphosphate chain
PPX is an enzyme that breaks down the polyphosphate chain
Tagging PPK into microcompartments causes build up of polyphosphate and prevents polyphosphate degradation by PPX
$(document).ready(function() {
$(window).scroll(function() {
var scroll = $(window).scrollTop();
if (scroll >= 410) {
$(".first").removeClass("folded");
} else {
$(".first").addClass(" ");
}
});
$(window).scroll(function() {
var scroll = $(window).scrollTop();
if (scroll >= 1010) {
$(".second").removeClass("folded");
} else {
$(".second").addClass(" ");
}
});
$(window).scroll(function() {
var scroll = $(window).scrollTop();
if (scroll >= 1610) {
$(".third").removeClass("folded");
} else {
$(".third").addClass(" ");
}
});
})