Skip to content

Commit d223eb6

Browse files
committed
Fixup formatting
1 parent 54392a8 commit d223eb6

File tree

1 file changed

+11
-19
lines changed

1 file changed

+11
-19
lines changed

blog/_posts/2021-08-20-symbiosis-symbulation.md

Lines changed: 11 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,11 @@ date: August 5, 2021
55
author: Tiffany-Ellen Vo
66
---
77

8-
# Symbiosis in Symbulation
9-
#### August 5, 2021 Tiffany-Ellen Vo
10-
- - -
8+
> | ![Tiffany Vo headshot]({{ site.baseurl }}/assets/headshots/square-TiffanyVo.png) | Hello! My name is Tiffany-Ellen Vo, I'm currently a senior at UC Santa Cruz, studying computer engineering. I’m especially interested in logic design, robotics, and computer architecture. In my free time, I love rock climbing, baking, and crocheting. To see some of my other projects, check out [my GitHub](https://github.com/TiffanyVo)!
119
12-
[comment]: <> (How do I make it so the text is aligned with the picture?)
10+
- - -
1311

14-
><img src="https://scontent-sjc3-1.xx.fbcdn.net/v/t1.6435-9/106543962_3538908449476892_6632988677477612051_n.jpg?_nc_cat=110&ccb=1-4&_nc_sid=09cbfe&_nc_ohc=MVm9XlfPXKYAX8k78kl&_nc_ht=scontent-sjc3-1.xx&oh=aff9f72aa230c94ddce73a0e5ab28c3e&oe=6131225E" alt="drawing" width="200"/> Hello! My name is Tiffany-Ellen Vo, I'm currently a senior at UC Santa Cruz, studying computer engineering. I’m especially interested in logic design, robotics, and computer architecture. In my free time, I love rock climbing, baking, and crocheting. To see some of my other projects, check out my GitHub!
15-
16-
- - -
17-
18-
## Introduction to Symbiosis
12+
## Introduction to Symbiosis
1913
Through the guidance of my mentor Anya, this summer I have worked on simulating symbiosis; symbiosis is any type of close and long-term biological interaction between two different biological organisims which would be mutualistic, commensalistic, or parasitic. We can look at the movie _Finding Nemo_ (2003) for an example of symbiosis; the mutualistic symbiotic relationship between an anemone and a clownfish is a classic one where both organisims benefit each other. The anemone provides the clownfish with shelter and protection, while the clownfish provides the anemone nutrients in the form of waste and scares off potential predator fish. Symbiotic relationships are important because they are a major driving force of evolution. However, parasitic and even mutualistic symbiosis relationships can make their species more vulnerable to environmental change if their partner starts having any problems. On the other hand, parasitism has been shown to lead 'arms races' where the two species are rapidly evolving to deal with each other.
2014

2115
While symbiosis has been simulated using Symbulation, the purpose of this project is to create and understand various types of complex symbiotic relationships while specificallly using the Avida complex genome to make the host and its symbionts.
@@ -24,10 +18,10 @@ author: Tiffany-Ellen Vo
2418

2519
---
2620

27-
## Symbiosis Environment
28-
In order to create symbiosis, we need to create a host with symbionts and create a world to put them in. Header files for the world, host and symbiont were created in order to do so. These files were originally created by the [last WAVES participant][blogPost] that worked with Anya, which were then built upon and edited for this summer.
21+
## Symbiosis Environment
22+
In order to create symbiosis, we need to create a host with symbionts and create a world to put them in. Header files for the world, host and symbiont were created in order to do so. These files were originally created by the [last WAVES participant]({{ site.baseurl }}/blog/symbiosis-genomes.html) who worked with Anya, which were then built upon and edited for this summer.
2923

30-
The constructors for each organism were edited to be up-to-date, which additional functions to add symbionts, which would then increase the count when simulating.
24+
The constructors for each organism were edited to be up-to-date, which additional functions to add symbionts, which would then increase the count when simulating.
3125

3226
For creating the world, a similar approach was taken for simulating a world in Symbulation. Since we didn't need all the functions and other attributes as the SymWorld in Symbulation, we inherited certain functions that were necessary for this project. For our world, an empirical world constructor was used to birth the organisms. In the world, two different selection methods were used; elite select and tournament select. Elite select picks a set of the most fit individuals for the next generation while tournament select randomly samples a subset of the population and then chooses the most-fit individual in that sample to progress to the next generation. These functions were originally created in Empirical, but changed slightly to fit this project, some of which included things such as passing the pointer to DoBirth. The DoBirth function is where I spent a fair amount of time with, which is shown for tournament select below.
3327

@@ -65,19 +59,17 @@ void AvidaGPTournamentSelect(AvidaGPWorld & world, size_t t_size, size_t tourny_
6559
6660
6761
68-
## Problems Encountered
62+
## Problems Encountered
6963
During this summer, I had a lot of internet and power issues which caused delays with the overall progression of this project. Initially we had tried to override the empirical world birth format, known as DoBirth, however there isn't any way to get the original host organism from 'mem' since it's just the genome and not the whole organism. As a result, the elite select and tournament select functions were recreated to fit our DoBirth method for this project.
7064
71-
## Conclusion
72-
I had a great time working on this project despite the delays due to having a multitude of power and internet issues. I've gained valuable skills, such as working with others, and analyzing files. On top of this, the enrichment seminars were really helpful with gaining new perspectives and skills that I will carry into my career. WAVES is a great intersection between computer science and biology, something that was very interesting and also tough for me due to my lack of knowledge in the biology area. My advice for the next onboarding student is to communicate well with your mentors and team when you feel overwhelmed! Empirical is such a large library and while very interesting, most files will not be necessary for your own project.
65+
# Conclusion
66+
I had a great time working on this project despite the delays due to having a multitude of power and internet issues. I've gained valuable skills, such as working with others, and analyzing files. On top of this, the enrichment seminars were really helpful with gaining new perspectives and skills that I will carry into my career. WAVES is a great intersection between computer science and biology, something that was very interesting and also tough for me due to my lack of knowledge in the biology area. My advice for the next onboarding student is to communicate well with your mentors and team when you feel overwhelmed! Empirical is such a large library and while very interesting, most files will not be necessary for your own project.
7367
7468
75-
# Acknowledgements
69+
## Acknowledgements
7670
Thank you so much to the WAVES team for putting this workshop together! It's been a blast to work with you all, and I wish you all the best going forward! From the group meetings to Matthew's ice breakers, it's been a great summer.
7771
78-
Special thanks to my mentor, Anya Vostinar for guiding me throughout this summer and being patient with me.
72+
Special thanks to my mentor, Anya Vostinar for guiding me throughout this summer and being patient with me.
7973
8074
This work is supported through Active LENS: Learning Evolution and the Nature of Science using Evolution in Action (NSF IUSE #1432563).
8175
Any opinions, findings, and conclusions or recommendations expressed in this material are those of the author(s) and do not necessarily reflect the views of the National Science Foundation.
82-
83-
[blogPost]: http://mmore500.com/waves/blog/symbiosis-genomes.html

0 commit comments

Comments
 (0)