') + ')', 'gi'); if (regex.test(text)) { found = true; var frag = document.createDocumentFragment(); var parts = text.split(regex); parts.forEach(function(part, i) { if (i % 2 === 0) { frag.appendChild(document.createTextNode(part)); } else { var span = document.createElement('span'); span.className = 'userscript-highlight'; span.textContent = part; frag.appendChild(span); } }); node.parentNode.replaceChild(frag, node); } }); } else if (node.nodeType === 1 && node.childNodes) { // element var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT']; if (!skipTags.includes(node.tagName)) { Array.from(node.childNodes).forEach(highlight); } } } highlight(document.body); // Re-highlight on dynamic content var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1 || node.nodeType === 3) highlight(node); }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Strip utm_, fbclid, gclid, etc. from all links on page (function() { var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid', 'ref', 'ref_src', 'source', 'medium', 'campaign']; function cleanUrl(url) { try { var u = new URL(url, window.location.origin); var changed = false; trackingParams.forEach(function(p) { if (u.searchParams.has(p)) { u.searchParams.delete(p); changed = true; } }); return changed ? u.toString() : url; } catch (e) { return url; } } function cleanLinks() { document.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } cleanLinks(); var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1) { if (node.tagName === 'A') cleanLinks(); node.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Auto-enable theater mode on YouTube (function() { function tryTheater() { var btn = document.querySelector('button[aria-label="Theater mode"], ytd-player #player button[title="Theater mode"]'); if (btn && !btn.classList.contains('activated')) { btn.click(); } } // Try immediately tryTheater(); // Try after navigation (SPA) var lastUrl = location.href; setInterval(function() { if (location.href !== lastUrl) { lastUrl = location.href; setTimeout(tryTheater, 500); } }, 1000); // Also try on player load var observer = new MutationObserver(tryTheater); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Remove or un-stick sticky/fixed headers that block content (function() { function unstick() { document.querySelectorAll('header, nav, [role="banner"], .header, .navbar, .sticky, .fixed-top, [style*="position: fixed"], [style*="position:sticky"]').forEach(function(el) { if (el.style.position === 'fixed' || el.style.position === 'sticky' || getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') { el.style.position = 'static'; el.style.top = 'auto'; el.style.zIndex = 'auto'; } }); } unstick(); var observer = new MutationObserver(unstick); observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] }); })(); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); })(); GitHub - practice-proactive/bioinformatics: :microscope: Path to a free self-taught education in Bioinformatics! · GitHub
Skip to content

Latest commit

History

35 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

Open Source Society logo

Open Source Society University

🔬 Path to a free self-taught education in Bioinformatics!

Open Source Society University - BioinformaticsContribute with OSSU on Patreon

Contents

About

This is a solid path for those of you who want to complete a Bioinformatics course on your own time, for free, with courses from the best universities in the World.

In our curriculum, we give preference to MOOC (Massive Open Online Course) style courses because these courses were created with our style of learning in mind.

To become a bioinformatician, you have to learn quiet a lot of science, so be ready for subjects like; Biology, Chemistry, etc...

Motivation & Preparation

Here are two interesting links that can make all the difference in your journey.

The first one is a motivational video that shows a guy that went through the "MIT Challenge", which consists of learning the entire 4-year MIT curriculum for Computer Science in 1 year.

The second link is a MOOC that will teach you learning techniques used by experts in art, music, literature, math, science, sports, and many other disciplines. These are fundamental abilities to succeed in our journey.

Are you ready to get started?

Curriculum

1st Year

CodeCourseDurationEffort
BIO 1311Introduction to Biology12 weeks7-14 Hours/Week
CHEM 1311Principles of Chemistry15 Weeks4-6 Hours/Week
COMP 1311aCS 1 - Python 1 5 Weeks6 Hours/Week
COMP 1311bCS 1 - Python 2 4 Weeks6 Hours/Week
COMP 1311cCS 1 - Principles of Computing 1 4 Weeks6 Hours/Week
COMP 1311dCS 1 - Principles of Computing 2 4 Weeks6 Hours/Week
MATH 1311Calculus 116 Weeks6 Hours/Week
MATH 1312Mathematics for CS13 Weeks6 Hours/Week

2nd Year

CodeCourseDurationEffort
BIO 2311Biochemistry15 Weeks4-6 Hours/Week
CHEM 2311Organic Chemistry15 Weeks4-6 Hours/Week
COMP 2311CS 2 - Object Oriented Java6 Weeks4-6 Hours/Week
MATH 2311Calculus 28 Weeks6 Hours/Week
COMP 2312Introduction to Databases10 Weeks8-12 Hours/Week
MATH 2312Linear Algebra15 Weeks8 Hours/Week
COMP 2313Introduction to Linux8 Weeks5-7 Hours/Week
MATH 2313Descriptive Statistics5 Weeks8 Hours/Week

3rd Year

CodeCourseDurationEffort
BIO 3311Genetics 1 7 Weeks6-8 Hours/Week
COMP 3311aAlgorithmic Thinking 1 4 Weeks6 Hours/Week
COMP 3311bAlgorithmic Thinking 2 4 Weeks6 Hours/Week
MATH 3311Probability5 Weeks8 Hours/Week
BIO 3312Cell Biology - Weeks- Hours/Week
COMP 3312High Performance (?)??
MATH 3312Differential Equations7 Weeks8-10 Hours/Week
BIO 3313aBiostatistics 14 Weeks3-5 Hours/Week
BIO 3313bBiostatistics 24 Weeks3-5 Hours/Week

4th Year

CodeCourseDurationEffort
BIO 4311Genetics 25 Weeks6-8 Hours/Week
COMP 4311Data Science 13 Week10 Hours/Week
MATH 4311Inferential Statistics5 Weeks8 Hours/Week
BIO 4312aMolecular Biology 1 8 Weeks4-8 Hours/Week
BIO 4312bMolecular Biology 2 6 Weeks4-8 Hours/Week
BIO 4312cMolecular Biology 38 Weeks4-8 Hours/Week
BIO 4312dBioinformatics 14 Weeks4-10 Hours/Week
COMP 4312aBioinformatics 24 Week6 Hours/Week
COMP 4312bBioinformatics 34 Week6 Hours/Week
COMP 4312cBioinformatics 44 Week6 Hours/Week
COMP 4312dBioinformatics 54 Week6 Hours/Week
COMP 4312eBioinformatics 64 Week6 Hours/Week
COMP 4312fBioinformatics 7 (Capstone)3 Week3-4 Hours/Week
BIO 4313Evolution11 Weeks4-6 Hours/Week

Extra Year

CodeCourseDurationEffort
COMP 5311Introduction to Machine Learning10 Weeks6 Hours/Week
COMP 5312Deep Learning8 Weeks6 Hours/Week
ExtensionGenomic Data Science Specialization32 Week6 Hours/Week

Will continue with Master's in Bioinformatics


keep learning

How to use this guide

Order of the classes

This guide was developed to be consumed in a linear approach. What does this mean? That you should complete one course at a time.

The courses are already in the order that you should complete them. Just start the first course, Introduction to Biology, when you done with it, start the next one.

If the course is not open, do it with the archived resources or wait until next class is open.

How to track and show your progress

  1. Create an account in Trello.
  2. Copy this board to your personal account. See how to copy a board here.

Now that you have a copy of our official board, you just need to pass the cards to the Doing column or Done column as you progress in your study.

We also have labels to help you have more control through the process. The meaning of each of these labels is:

  • Main Curriculum: cards with that label represent courses that are listed in our curriculum.
  • Extra Courses: cards with that label represent courses that was added by the student.
  • Doing: cards with that label represent courses the student is current doing.
  • Done: cards with that label represent courses finished by the student. Those cards should also have the link for at least one project/article built with the knowledge acquired in such course.
  • Section: cards with that label represent the section that we have in our curriculum. Those cards with the Section label are only to help the organization of the Done column. You should put the Course's cards below its respective Section's card.
  • Extra Sections: cards with that label represent sections that was added by the student.

The intention of this board is to provide for our students a way to track their progress, and also the ability to show their progress through a public page for friends, family, employers, etc. You can change the status of your board to be public or private.

Should I take all courses?

Yes! The intention is to conclude all the courses listed here! Also we highly encourage you to complete more by reading papers and attending research projects after your coursework is done.

Duration of the course

It may take longer to complete all of the classes compared to a regular Bioinformatics course, but we can guarantee you that your reward will be proportional to your motivation/dedication!

You must focus on your habit, and forget about goals. Try to invest 1 ~ 2 hours every day studying this curriculum. If you do this, inevitably you'll finish this curriculum.

See more about "Commit to a process, not a goal" here.

Project Based

Here in OSS University, you do not need to take exams, because we are focused on real projects!

In order to show for everyone that you successfully finished a course, you should create a real project or write papers and publish them about your focus with Bioinformatics.

"What does it mean?"

After finish a course, you should think about a real world problem that you can solve using the acquired knowledge in the course. You don't need to create a big project, but you must create something to validate and consolidate your knowledge, and also to show to the world that you are capable to create something useful with the concepts that you learned.

This part needs upgrade:

  • The projects of all students will be listed in this file. Submit your project's information in that file after you conclude it.
  • Research focused projects

Put the OSSU-Bioinformatics badge in the README of your repository! Open Source Society University - Bioinformatics

  • Markdown: [![Open Source Society University - Bioinformatics ](https://img.shields.io/badge/OSSU-bioinformatics-blue.svg)](https://github.com/open-source-society/bioinformatics)
  • HTML: <a href="https://github.com/open-source-society/bioinformatics"><img alt="Open Source Society University - Bioinformatics" src="https://img.shields.io/badge/OSSU-bioinformatics-blue.svg"></a>

You can create this project alone or with other students!

Project Suggestions

  1. (Add Suggestions Here)

And you should also...

Be creative!

This is a crucial part of your journey through all those courses.

You need to have in mind that what you are able to create with the concepts that you learned will be your certificate and this is what really matters!

In order to show that you really learned those things, you need to be creative!

Here are some tips about how you can do that:

  • Articles: create blog posts to synthesize/summarize what you learned.
  • GitHub repository: keep your course's files organized in a GH repository, so in that way other students can use it to study with your annotations.

Cooperative work

We love cooperative work! Use our channels to communicate with other fellows to combine and create new projects!

Which programming languages should I use?

List of skills:

  • C/C++
  • Unix System
  • Python/Perl
  • R
  • Algorithms

These skills mentioned above are the very essential tool set that bioinformatician and computational biologist depends on.

The important thing for each course is to internalize the core concepts and to be able to use them with whatever tool (programming language) that you wish.

Content Policy

You must share only files that you are allowed to! Do NOT disrespect the code of conduct that you signed in the beginning of some courses.

Be creative in order to show your progress! 😄

Stay tuned

Watch this repository for futures improvements and general information.

Prerequisite

The only things that you need to know are how to use Git and GitHub. Here are some resources to learn about them:

Note: Just pick one of the courses below to learn the basics. You will learn a lot more once you get started!

Change Log

How to collaborate

You can open an issue and give us your suggestions as to how we can improve this guide, or what we can do to improve the learning experience.

You can also fork this project and send a pull request to fix any mistakes that you have found.

TODO: If you want to suggest a new resource, send a pull request adding such resource to the extras section.

The extras section is a place where all of us will be able to submit interesting additional articles, books, courses and specializations, keeping our curriculum as immutable and concise as possible.

Let's do it together! =)

Code of conduct

OSSU's code of conduct.

Community

Subscribe to our newsletter

Use our forum if you need some help.

You can also interact through GitHub issues.

We also have a chat room! Gitter

Add Open Source Society University to your Linkedin and Facebook profile!

ps: A forum is an ideal way to interact with other students as we do not lose important discussions, which usually occur in communication via chat apps. Please use our forum for important discussions.

Next Goals

Team

References

About

🔬 Path to a free self-taught education in Bioinformatics!

Resources

Stars

0 stars

Watchers

5 watching

Forks

Releases

Packages

Contributors