Module 7: Object Oriented Programming
This week we will be exploring object oriented programming (OOP). GitHub Link: https://github.com/Ant-nguyen/Intro_r_2021/blob/main/Module7.R Our assignment this week is to obtain any type of data and then try to determine what generic functions can be assigned to the data set. Then see how we can utilize S3 and S4 class structures and OOP paradigms in the data. This week I decided to challenge myself a bit and use a slightly unconventional type of data, a sequence of genomic data. The goal being to try to utilize OOP methods when tackling a sequence of DNA. For those who are unfamiliar with DNA transcription I will be covering some of the basics through out but the following video is a simple to understand explanation of some of the concepts I will be dealing with: Link to DNA data: https://www.ncbi.nlm.nih.gov/nuccore/JX262162 Raw genomic sequence: https://www.ncbi.nlm.nih.gov/nuccore/JX262162.1?report=fasta Let us begin First let me begin by explaining w...