Skip to content
Snippets Groups Projects
Commit ba341e4c authored by Devyani Ravi's avatar Devyani Ravi
Browse files

adding codon table and download button

parent c7ff2d32
No related branches found
No related tags found
No related merge requests found
Pipeline #453407 failed
<template>
<div class="contribution">
<h3>Connecting iGEM Past, Present, and Future</h3>
<div class="contribution-container">
<img
src="https://static.igem.wiki/teams/5306/contributionscutiesgood.png"
......@@ -18,21 +16,6 @@
<!-- Collapsible Cards -->
<div class="collapsible-cards">
<!-- Vibrio Natriegens Protocol Booklet -->
<div class="card">
<h4 @click="toggleSection('protocolGuide')">
Vibrio natriegens Protocol Booklet
<span v-if="sections.protocolGuide"></span>
<span v-else></span>
</h4>
<div v-if="sections.protocolGuide" class="content">
<p>
<i>Vibrio natriegens</i> is a fast-growing bacterium with great potential in biotechnology. As such, it has begun to gain popularity as a chassis organism in synthetic biology, including in iGEM. Since its use as a chassis organism is quite new, it can be difficult to consolidate protocols. To fulfill this need, we aim to provide future iGEM teams a strong foundation to build upon through our comprehensive protocol guide for <i>Vibrio natriegens</i>. This guide will provide step-by-step instructions on obtaining, culturing, manipulating, and utilizing <i>Vibrio natriegens</i>, making it easier for other researchers to adopt this organism in their work. Additionally, the guide also includes tips and tricks we have learned through our experience working with this novel bacterium. By providing this resource, we hope to save teams valuable time and effort during the competition and beyond.
</p>
</div>
</div>
<!-- Vibrio Natriegens Snapgene Codon Optimization Table -->
<div class="card">
<h4 @click="toggleSection('codonTable')">
......@@ -42,8 +25,15 @@
</h4>
<div v-if="sections.codonTable" class="content">
<p>
In addition to our protocol guide, Natronaut has created an easily accessable codon optimization table specifically for <i>Vibrio natriegens</i> that can be directly used in Snapgene. This table will assist researchers in selecting the most efficient codons for gene expression, optimizing the performance of genetic constructs, and improving experimental outcomes for future teams working with <i>Vibrio natriegens</i>
In addition to our protocol guide, Natronaut has created an easily accessible codon optimization table specifically for <i>Vibrio natriegens</i> that can be directly used in Snapgene. This table will assist researchers in selecting the most efficient codons for gene expression, optimizing the performance of genetic constructs, and improving experimental outcomes for future teams working with <i>Vibrio natriegens</i>.
</p>
<img
src="https://static.igem.wiki/teams/5306/contribution/codon-opt.png"
alt="Codon Optimization Table"
width="100%"
/>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec a diam lectus. Sed sit amet ipsum mauris. Maecenas congue ligula ac quam viverra nec semper nisi cursus. Etiam porttitor, eros sit amet gravida iaculis, lacus est tincidunt neque, id vehicula justo eros vel metus.</p>
<button @click="downloadTable">Download Codon Optimization Table</button>
</div>
</div>
......@@ -56,10 +46,9 @@
</h4>
<div v-if="sections.registryParts" class="content">
<p>
Our team has registered new parts in the iGEM registry, aiming to facilitate research using the ANRA pathway with or without <i>Vibrio Natriegens</i>. ADD DETAILS OF THE PARTS THEMSELVES: TYPE EG. BASIC, COMPOSITE WITH NUMBER. By the registry of these parts, we aim to further expand the accessability of such parts for future iGEM teams that wish to work with the assimilatory nitrate reduction to ammonium (ANRA) pathway wihtout or with *Vibrio Natriegens* as a chassis organism. Parts also come with characteristion which can aid and provide a starting point for future teams. Furthermore we wish for such future iGEM teams to continue to characterize and build upon these newly registered iGEM parts with their own findings, truly setting the foundations for collaboration.
DO A TABLE WITH OUR CATAGORIES OF PARTS AND THEIR NUMBERS
Our team has registered new parts in the iGEM registry, aiming to facilitate research using the ANRA pathway with or without <i>Vibrio Natriegens</i>. ADD DETAILS OF THE PARTS THEMSELVES: TYPE EG. BASIC, COMPOSITE WITH NUMBER. By the registry of these parts, we aim to further expand the accessibility of such parts for future iGEM teams that wish to work with the assimilatory nitrate reduction to ammonium (ANRA) pathway without or with <i>Vibrio Natriegens</i> as a chassis organism. Parts also come with characterization which can aid and provide a starting point for future teams. Furthermore, we wish for such future iGEM teams to continue to characterize and build upon these newly registered iGEM parts with their own findings, truly setting the foundations for collaboration.
DO A TABLE WITH OUR CATEGORIES OF PARTS AND THEIR NUMBERS
For detailed information about Natronaut's parts please refer to the Engineering and Parts pages. LINK
</p>
</div>
</div>
......@@ -107,17 +96,22 @@ export default {
data() {
return {
sections: {
protocolGuide: false,
codonTable: false,
registryParts: false,
sustainableBooklet: false,
notionTemplate: false
}
// Other sections can be added here
};
};
},
methods: {
toggleSection(section) {
this.sections[section] = !this.sections[section];
},
downloadTable() {
const link = document.createElement('a');
link.href = 'https://static.igem.wiki/teams/5306/contribution/vibrio-natriegens-codon-usage-table-1.pdf'; // Updated download link
link.download = 'vibrio-natriegens-codon-usage-table.pdf'; // Set the desired file name
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
}
}
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment