Cas9 & Cpf1 secretion
and activity
Line 1,107: | Line 1,107: | ||
<div class="page-heading">MESA construct replication</div> | <div class="page-heading">MESA construct replication</div> | ||
− | The architecture we use for OUTCASST is inspired by the Modular Extracellular Sensor Architecture (MESA) | + | The architecture we use for OUTCASST is inspired by the Modular Extracellular Sensor Architecture (MESA) <i class="ref" data-ref="1">1</i> <i class="ref" data-ref="2">2</i>. Because of this, MESA first needed to be replicated to verify whether the final product could work as intended. |
A successful replication is required for OUTCASST to work, and to provide data that we can use to compare and correct models of the system. | A successful replication is required for OUTCASST to work, and to provide data that we can use to compare and correct models of the system. | ||
<br> | <br> | ||
Line 1,218: | Line 1,218: | ||
<br><br> | <br><br> | ||
<h2 class="subhead" id="subhead-7">References</h2> | <h2 class="subhead" id="subhead-7">References</h2> | ||
+ | |||
+ | <ol class="references"> | ||
+ | <li data-title="Modular extracellular sensor architecture for engineering mammalian cell-based devices." data-author="Daringer, N. M., Dudek, R. M., Schwarz, K. A., & Leonard, J. N." data-link="http://pubs.acs.org/doi/abs/10.1021/sb400128g" />Daringer, N. M., Dudek, R. M., Schwarz, K. A., & Leonard, J. N., 2014: Modular extracellular sensor architecture for engineering mammalian cell-based devices. ACS synthetic biology, 3(12), 892-902. <a target=_BLANK href="http://pubs.acs.org/doi/abs/10.1021/sb400128g" class="external"></a> | ||
+ | <li data-title="Rewiring human cellular input-output using modular extracellular sensors." data-author="Schwarz, K. A., Daringer, N. M., Dolberg, T. B., & Leonard, J. N." data-link="http://www.nature.com/nchembio/journal/v13/n2/abs/nchembio.2253.html?foxtrotcallback=true" />Schwarz, K. A., Daringer, N. M., Dolberg, T. B., & Leonard, J. N. 2017: Rewiring human cellular input-output using modular extracellular sensors. Nature chemical biology, 13(2), 202-209. <a target=_BLANK href="http://www.nature.com/nchembio/journal/v13/n2/abs/nchembio.2253.html?foxtrotcallback=true" class="external"></a> | ||
+ | </ol> | ||
+ | |||
+ | <span id="tooltip-1"></span> | ||
+ | <span id="tooltip-2"></span> | ||
<br><br> | <br><br> | ||
− | <h2 class="subhead" id="subhead- | + | <h2 class="subhead" id="subhead-8">Supplementary</h2> |
</script> | </script> | ||
Line 1,690: | Line 1,698: | ||
#modal-content>h2 { border-bottom: 1px solid #dedede; padding-bottom: 10px; } | #modal-content>h2 { border-bottom: 1px solid #dedede; padding-bottom: 10px; } | ||
+ | |||
+ | .ref { | ||
+ | display: inline-block; | ||
+ | background: #0069b3; | ||
+ | color: white; | ||
+ | top: -5px; | ||
+ | position: relative; | ||
+ | border-radius: 50%; | ||
+ | font-size: 12px; | ||
+ | line-height: 17px; | ||
+ | font-weight: bold; | ||
+ | font-style: normal; | ||
+ | width: 17px; | ||
+ | text-align: center; | ||
+ | cursor: pointer; | ||
+ | } | ||
+ | |||
+ | .ref-close | ||
+ | { | ||
+ | font-size: 11px; | ||
+ | line-height: 20px; | ||
+ | cursor: pointer; | ||
+ | width: 120px; | ||
+ | height: 20px; | ||
+ | margin: 5px auto; | ||
+ | text-align: center; | ||
+ | background: #ececec; | ||
+ | color: #0069b3; | ||
+ | border-radius: 5px; | ||
+ | } | ||
+ | |||
+ | .ref-close:hover | ||
+ | { | ||
+ | background: #0069b3; | ||
+ | color: white; | ||
+ | } | ||
.pdf { display: inline-block; font-size: 12px; margin: 10px 0 10px 0; padding-left: 30px; height: 24px; background: url(https://static.igem.org/mediawiki/2017/6/6a/Uupdf.png) top left no-repeat; vertical-align: bottom; } | .pdf { display: inline-block; font-size: 12px; margin: 10px 0 10px 0; padding-left: 30px; height: 24px; background: url(https://static.igem.org/mediawiki/2017/6/6a/Uupdf.png) top left no-repeat; vertical-align: bottom; } | ||
Line 3,014: | Line 3,058: | ||
5: "Results", | 5: "Results", | ||
6: "Discussion", | 6: "Discussion", | ||
− | 7: "Supplementary", | + | 7: "References", |
+ | 8: "Supplementary", | ||
}, | }, | ||
"outcasst" : { | "outcasst" : { | ||
Line 3,150: | Line 3,195: | ||
$$(".top-menu")[0].removeClassName("active"); | $$(".top-menu")[0].removeClassName("active"); | ||
$$(".menu-container")[0].removeClassName("active"); | $$(".menu-container")[0].removeClassName("active"); | ||
+ | |||
+ | // references | ||
+ | if($$(".page-container i.ref").length > 0) | ||
+ | { | ||
+ | $$(".page-container i.ref").each(function(v, k) | ||
+ | { | ||
+ | var ref_key = parseInt(v.innerHTML); | ||
+ | var reference; | ||
+ | |||
+ | var i = 1; | ||
+ | $$(".references>li").each(function(ref_v, ref_k) | ||
+ | { | ||
+ | if(i == ref_key) | ||
+ | { | ||
+ | reference = ref_v; | ||
+ | |||
+ | jQuery("#tooltip-" + i).dxTooltip({ | ||
+ | target: v, | ||
+ | showEvent: 'click', | ||
+ | hideEvent: "", | ||
+ | closeOnOutsideClick: true, | ||
+ | width: 0, | ||
+ | height: 0, | ||
+ | visible: true, | ||
+ | animation: { show: { type: 'fade', from: 0, to: 1, duration: 0 }, hide: { type: 'fade', to: 0, duration: 0 } }, | ||
+ | contentTemplate: "" | ||
+ | }).dxTooltip("hide"); | ||
+ | |||
+ | jQuery("#tooltip-" + i).dxTooltip({ | ||
+ | width: "auto", | ||
+ | height: "auto", | ||
+ | animation: { show: { type: 'fade', from: 0, to: 1 }, hide: { type: 'fade', to: 0 } }, | ||
+ | contentTemplate: function () { | ||
+ | return "<div style='text-align: left;'><b>" + ref_v.getAttribute("data-title") + "</b><br>" + ref_v.getAttribute("data-author") + "<br>Link: <a target=_BLANK href='" + ref_v.getAttribute("data-link") + "'>click here</a><br><br><div class='ref-close'>View full reference</div></div>"; | ||
+ | }, | ||
+ | }); | ||
+ | |||
+ | throw $break; | ||
+ | } | ||
+ | |||
+ | i++; | ||
+ | }); | ||
+ | |||
+ | console.log(v, reference); | ||
+ | }); | ||
+ | } | ||
if(!first_load) | if(!first_load) | ||
Line 3,300: | Line 3,391: | ||
jQuery("html, body").animate({ scrollTop: pos.y - 200 }, 500); | jQuery("html, body").animate({ scrollTop: pos.y - 200 }, 500); | ||
+ | }); | ||
+ | |||
+ | // reference click | ||
+ | document.body.on("click", ".ref-close", function(event, element) | ||
+ | { | ||
+ | $$(".menu-container .item").each(function(v, k) | ||
+ | { | ||
+ | if(v.innerHTML.indexOf("Reference") > 0) | ||
+ | { | ||
+ | var pos = getPos($("subhead-" + v.getAttribute("data-key"))); | ||
+ | |||
+ | jQuery("html, body").animate({ scrollTop: pos.y - 200 }, 500); | ||
+ | |||
+ | throw $break; | ||
+ | } | ||
+ | }); | ||
}); | }); | ||
Revision as of 17:31, 31 October 2017
<!DOCTYPE html>
×