Bioinformatics Training Module

This is an entry level Bioinformatics Introduction course.

Indiana State Department of Health, Advanced Molecular Detection Unit

Division Director: Jamie Yeadon & Department Director: Lixia Liu, PhD

Introduction to Bioinformatics

Genetics and Genomics

Supplementary textbook: here is the link for the website

# Your First Code
my_genes <- c("geneA", "geneB", "geneC", "geneD")
my_genes
## [1] "geneA" "geneB" "geneC" "geneD"
data <- my_genes
data 
## [1] "geneA" "geneB" "geneC" "geneD"