How to clean and join data from mothur with the dplyr R package (CC101)
Code
This is where we started before the episode
library(tidyverse)
library(readxl)
metadata <- read_excel("raw_data/schubert.metadata.xlsx")
otu_counts <- read_tsv("raw_data/schubert.subsample.shared")
taxonomy <- read_tsv("raw_data/schubert.cons.taxonomy")