Computational Biology Club

Join us on AggieLife here.

JOIN

About Us

With the increasing pervasiveness and potential of machine learning and computation in genomics, neuroscience, and medicine, application of computational tools in biology has become more important than ever. Our mission is to train and interactively collaborate with students through the dissemination of lessons, workshops, guest speakers, competitions, and projects to equip students in topics relating to bioinformatics, connectomics, computational neuroscience, machine learning, and applications of AI in clinical and pharmaceutical use.

4

Officers

5

Members

0

Events

0

Emails/Newsletters

Members Benefits

Membership benefits include (define your member benefits under group settings)

Events & Activities

Be the first to know about what we have planned and add our group calendar to your schedule.

Exclusive Resources

Get our newsletter and stay in the loop.

Connections

Meeting new students with shared interest

Our Team

Kevin Wang Profile

Kevin Wang

2024-2025 Primary Leader
Larrisa Yang Profile

Larrisa Yang

Officer
Ethan Mathai Profile

Ethan Mathai

2024-2025 Secondary Leader
Tara Tiong Profile

Tara Tiong

2024-2025 Treasurer/Financial Officer

E:
P:

Computational Biology Club

1 Shields Ave
Davis California 95616
United States

// Array of random facts const facts = [ "Bananas are berries, but strawberries aren't.", "A day on Venus is longer than a year on Venus.", "Honey never spoils.", "Octopuses have three hearts.", "The Eiffel Tower can grow more than 6 inches during the summer." ]; // Function to display a random fact const randomFactBtn = document.getElementById('randomFactBtn'); const randomFactDisplay = document.getElementById('randomFact'); randomFactBtn.addEventListener('click', function() { const randomIndex = Math.floor(Math.random() * facts.length); randomFactDisplay.innerText = facts[randomIndex]; });