-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontribution.html
332 lines (319 loc) · 16.4 KB
/
contribution.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
{% extends "layout.html" %} {% block title %}Contribution{% endblock %}
{% block lead %}{% endblock %} {% block page_content %}
<style>
body {
background-image: linear-gradient(to bottom,
#EDDFE0 25%,
#F5F5F7 50%,
#B7B7B7 75%,
#705C53 100%);
}
#float1 {
background-image: url("https://static.igem.wiki/teams/5346/doodle/contribution-2-removebg-preview-1.png");
}
#float2 {
background-image: url("https://static.igem.wiki/teams/5346/doodle/contibution-1-removebg-preview.png");
}
</style>
<div class="col-md-3 sidebar">
</div>
<div class="col-md-9 content">
<p>Our team is dedicated to advancing the field of synthetic biology and supporting fellow iGEMers through innovative
tools and resources. Below are the key contributions we are proud to offer to the iGEM community and the scientific
community at large.</p>
<h1>IMPROViSeD</h1>
<p>IMPROViSeD is a cutting-edge, robust, scalable, and efficient tool specifically designed to model protein complexes using experimentally
derived geometric constraints. Unlike traditional methods that often rely on computational predictions, IMPROViSeD integrates actual experimental
data to deliver precise and accurate structural models of protein complexes. This data-driven approach ensures that the models reflect
the real-world dynamics of protein interactions, which is crucial for understanding biological mechanisms at a molecular level.</p>
<p>For iGEMers, the power of IMPROViSeD lies in its ability to aid in visualisation and thereby accelerate the development of targeted
therapeutics.
By elucidating the precise structure of protein complexes, such as those involved in cancer metastasis (as we have),
teams can design more effective drugs and therapies that target specific protein-protein interactions with higher precision.
The platform's scalability ensures that even large, multi-subunit complexes can be modelled efficiently, making it an
invaluable resource for synthetic biology projects that require detailed molecular insights.</p>
<p>Whether it's designing antibodies, inhibitors, or other therapeutic molecules, IMPROViSeD empowers iGEM teams to
bridge the gap between structural biology and clinical applications, opening new possibilities for developing next-generation
treatments for complex diseases. </p>
<h1>BEPT</h1>
<figure>
<img src="https://static.igem.wiki/teams/5346/contributions/bept.png" alt="Figure has not downloaded">
<figcaption>BEPT</figcaption>
</figure>
<p>In today's research landscape, many scientists encounter challenges when utilizing software tools available on
platforms like GitHub, often due to unfamiliarity with the command line or difficulty in comprehending
documentation. To address this gap, we developed BEPT (Bioinformatics Environment for Protein Tools), an interactive
command line interface that simplifies the use of APBS (Adaptive Poisson-Boltzmann Solver) for protein
electrostatics studies.</p>
<p>BEPT automates the generation of pdb2pqr commands and allows users to adjust APBS calculation parameters
effortlessly. By recreating the functionality of the APBS web server within the terminal, BEPT provides a
user-friendly design that helps researchers overcome initial apprehensions about command-line tools. Our
contribution aims to make protein electrostatics more accessible, enabling scientists to conduct meaningful research
without the barriers often associated with traditional command-line interfaces.</p>
<figure>
<img src="https://static.igem.wiki/teams/5346/contributions/bept-collage-2.png" alt="bept collage">
<figcaption>Working of BEPT</figcaption>
</figure>
Bept also provides a framework for the iGEM community for building their interactive command line tool in Python.
<ol>
<li><b>Define Scope</b>
<p>
Outline the tool's goals, core functionalities, and supported techniques (e.g., protein analysis, electrostatics). Bept has a well defined scope for protein electrostatics studies clearly defined in the documentation.
</p>
</li>
<li><b>Use Beginner-Friendly Libraries</b>
<p>
Leverage python libraries like `click` or `argparse` for CLI and `rich` for interactive output, ensuring ease of use. Grouping commands logically, providing clear help descriptions, and including simple examples helps users understand the tool's capabilities. Bept uses `click`, `rich`, `beaupy`, `textual` and more libraries for interactive interfaces.
</p>
</li>
<li><b>Testing and Maintainance</b>
<p>
Implement unit tests, integration tests, and continuous integration to ensure the tool's reliability and performance. Regular updates and bug fixes enhance the user experience. Bept has been tested cross-platform on Linux, MacOS and Windows and well maintained on Github.
</p>
</li>
<li><b>Documentation</b>
<p>
Create detailed documentation with installation instructions, usage examples, and troubleshooting tips to guide users effectively. You can add the documentation online using Read the Docs, GitHub Pages, or other platforms. Bept uses Sphinx and Read the Docs for documentation.
</p>
</li>
<li><b>Publishing on Package Managers</b>
<p>
Distribute the tool on PyPI, Conda, Homebrew, etc. for easy installation and accessibility. Include versioning and dependencies for seamless integration.
</p>
</li>
</ol>
Bept is available on <a href="https://github.com/IISc-Software-iGEM/bept">Github</a>, <a href="https://pypi.org/project/bept/">PyPI</a>, <a href="https://github.com/AnirudhG07/homebrew-AnirudhG07">Homebrew Tap</a>. Online documentation for Bept is present at <a href="https://bept.readthedocs.io/en/latest/">Read the Docs</a>.
<h1>Inclusivity Tool for Enhanced Accessibility</h1>
<figure>
<img src="https://static.igem.wiki/teams/5346/contributions/inclusivity.png" alt="inclusivity image">
<figcaption>Inclusivity</figcaption>
</figure>
<p>Understanding the importance of inclusivity in research and education, we have developed a plug-in tool designed to
enhance accessibility on our web platform. This tool features options for color customization to aid colorblind
individuals, a reading focus option for those with attention disorders, and text customization for improved
readability. Additionally, it highlights links and buttons on the webpage to ensure that all users can navigate our
resources effectively.</p>
<p>By prioritizing inclusivity, we aim to create an environment where every individual, regardless of their abilities
or challenges, can engage with our project and the broader field of synthetic biology. This plug-in tool can be
utilised by iGEMers to enhance accessibility and inclusivity on their wikis. </p>
<h1>Synthetic Biology Ideathon Framework</h1>
<p>To assist upcoming iGEM teams in organizing effective ideathons, we designed a systematic workflow that can be used
to make these events both informative and impactful. This framework aims to help future teams expand their reach,
engage their audience, and communicate ideas effectively through structured ideation sessions. The workflow
emphasizes the importance of clear objectives, well-defined challenges, audience targeting, and providing
participants with the right tools, resources, and mentorship to foster creative thinking and problem-solving. By
following this process, iGEM teams can host ideathons that inspire innovative ideas and drive meaningful discussions
in synthetic biology and related fields.</p>
<ol>
<li><b>Define Objectives and Goals</b>
<ul>
<li><b>Purpose:</b> Clearly state the purpose of the ideathon. Is it to generate innovative ideas in synthetic biology,
sustainability, education, or social good?</li>
<li><b>Goal Setting:</b> Define clear outcomes:
<ul>
<li>A list of innovative ideas.</li>
<li>Participant engagement and learning.</li>
<li>Awareness and collaboration among participants on real-world issues.</li>
</ul>
</li>
</ul>
</li>
<li><b>Identify and Segment the Target Audience</b>
<ul>
<li><b>Define Audience Profile:</b>
<ul>
<li>High school or college students, entrepreneurs, early-career professionals, or a mixed group.</li>
<li>Consider their background (technical, non-technical) to ensure balanced participation.</li>
</ul>
</li>
<li><b>Understand Needs:</b>
<ul>
<li>Conduct pre-event surveys or interact with potential participants to assess their interests and
challenges.</li>
<li>Target students or professionals interested in solving problems but unsure how to proceed with ideation.
</li>
</ul>
</li>
</ul>
</li>
<li><b>Theme and Challenge Design</b>
<ul>
<li><b>Theme Selection:</b> Choose a relevant and engaging theme aligned with your objectives (e.g., "Innovating with
Synthetic Biology," "Sustainable Solutions for the Future"). In our case, it was “using computational and
synthetic biology to produce sustainable solutions”.</li>
<li><b>Challenges:</b> Define challenges under the theme. Challenges should:
<ul>
<li>Be broad enough to allow creativity but specific enough to address real-world problems.</li>
<li>Provide context for participants, offering real-life scenarios where their ideas could be applied.</li>
</ul>
</li>
<li><b>Problem Statements:</b> Prepare clear problem statements or ask participants to identify a challenge they want
to solve.</li>
</ul>
</li>
<li><b>Content Design and Preparation</b>
<ul>
<li><b>Workshops and Resources:</b>
<ul>
<li>Pre-event webinars or resources on creative thinking, problem framing, and ideation techniques (e.g.,
design thinking, mind-mapping).</li>
<li>Provide case studies and relevant data related to the ideathon’s theme to guide participants.</li>
<li>Industry insights and articles to give participants inspiration and context.</li>
</ul>
</li>
<li><b>Mentorship:</b>
<ul>
<li>Recruit mentors with expertise in the ideathon’s theme who can guide participants through brainstorming
and idea refinement.</li>
<li>Organize one-on-one mentoring sessions or open Q&A formats.</li>
</ul>
</li>
</ul>
</li>
<li><b>Ideation and Evaluation Process</b>
<ul>
<li><b>Structured Ideation:</b>
<ul>
<li>Guide participants through structured ideation techniques such as:
<ul>
<li>Brainstorming sessions.</li>
<li>Design thinking workshops to empathize, define, ideate, prototype, and test solutions.</li>
</ul>
</li>
<li>Encourage participants to focus on the viability, feasibility, and impact of their ideas.</li>
</ul>
</li>
<li><b>Checkpoints:</b>
<ul>
<li>Set up checkpoints during the event where teams can present progress, get feedback, and refine their
ideas.</li>
</ul>
</li>
</ul>
</li>
<li><b>Judging Criteria and Pitching</b>
<ul>
<li><b>Criteria:</b>
<ul>
<li>Clarity of problem definition.</li>
<li>Innovation and creativity.</li>
<li>Impact and potential for real-world application.</li>
<li>Feasibility of the idea.</li>
<li>Presentation and storytelling skills.</li>
</ul>
</li>
<li><b>Pitch Preparation:</b>
<ul>
<li>Offer workshops or guides on how to craft effective pitches.</li>
<li>Time-limit pitches (e.g., 5 minutes per team), allowing for succinct communication.</li>
</ul>
</li>
<li><b>Panel of Judges:</b>
<ul>
<li>Invite industry experts, academics, and relevant professionals to evaluate the pitches based on the
criteria.</li>
</ul>
</li>
</ul>
</li>
<li><b>Tools and Platforms</b>
<ul>
<li><b>Platform for Virtual Events:</b>
<ul>
<li>If virtual, select a platform that supports team collaboration, such as Zoom, Microsoft Teams, or
Discord.</li>
<li>Use platforms like Miro, Figma, or Google Slides for collaborative brainstorming and presentations.</li>
</ul>
</li>
<li><b>Submission System:</b>
<ul>
<li>Designate a platform or form for idea submissions (e.g., Google Forms, Devpost, or an internal
submission system).</li>
</ul>
</li>
</ul>
</li>
<li><b>Post-Ideathon Engagement</b>
<ul>
<li><b>Follow-Up:</b>
<ul>
<li>Provide feedback to participants on their ideas.</li>
<li>Share winning ideas and promote further collaboration through newsletters, social media, or community
forums.</li>
</ul>
</li>
<li><b>Resources for Further Development:</b>
<ul>
<li>Share resources or connect participants to incubators, mentors, or potential funding to turn their ideas
into reality.</li>
</ul>
</li>
<li><b>Offer Certificates and Prizes:</b>
<ul>
<li>Offer incentives like certificates, mentorship opportunities, internships, or small seed funding for
further idea development.</li>
</ul>
</li>
</ul>
</li>
<li><b>Promotion and Participant Outreach</b>
<ul>
<li><b>Targeted Marketing:</b>
<ul>
<li>Reach out through schools, universities, social media, and relevant industry forums.</li>
<li>Tailor your messaging to inspire creativity and focus on the opportunity to contribute to a meaningful
cause or challenge.</li>
</ul>
</li>
<li><b>Engage Communities:</b>
<ul>
<li>Partner with student clubs, online communities, or industry groups to amplify your reach.</li>
</ul>
</li>
</ul>
</li>
</ol>
<hr>
<h2>Recommended Timeline</h2>
<ol>
<li>6-8 Weeks Before the Event:
<ul>
<li>Define objectives and theme.</li>
<li>Identify the target audience.</li>
<li>Start promoting and open registration.</li>
</ul>
</li>
<li>4 Weeks Before the Event:
<ul>
<li>Confirm mentors, judges, and speakers.</li>
<li>Design workshops or webinars.</li>
</ul>
</li>
<li>2 Weeks Before the Event:
<ul>
<li>Finalize logistics and share event materials (challenges, schedules, resources).</li>
</ul>
</li>
<li>During the Event:
<ul>
<li>Facilitate ideation, provide ongoing mentorship, and hold checkpoints.</li>
<li>Conduct the final pitching session.</li>
</ul>
</li>
<li>Post-Event:
<ul>
<li>Announce winners, share feedback, and promote ongoing engagement.</li>
</ul>
</li>
</ol>
<hr>
<p>
During our discussions with faculty at MSMF, we identified a key challenge in antibody therapeutics: the need to screen numerous antibodies to determine the most effective one. Our software can model the interfaces between two proteins that are crucial to disease propagation. By understanding the structure of these interfaces, the ultimate goal is to design antibodies that can effectively combat these diseases. We are also working towards enabling our software to predict the structure of an antibody based on the epitope at the protein interface. This advancement would significantly improve the efficiency of antibody screening by greatly reducing development time.
</p>
<hr>
<p> Our team's contributions are designed to enhance collaboration, accessibility, and innovation within the iGEM
community and the broader field of synthetic biology. By providing essential tools like IMPROViSeD and BEPT, along
with our inclusivity plug-in and the framework for the Synthetic Biology Ideathon, we aim to empower iGEMers and the
research community at large. </p>
</div>
{% endblock %}