`trait_pivot_longer` "gathers" wide format data into a "tidy" format.
This function converts the data into long format where observations are on different rows and the type of observation is denoted by the `trait_name` column. In other words, `trait_pivot_longer` reverts the actions of `trait_pivot_wider`.
db_traits_pivot_longer(wide_data)
Output from `trait_pivot_wider` (a tibble of wide data)
A tibble in long format
`trait_pivot_longer` will return a tibble with fewer columns than the original traits table The excluded columns include: "unit", "replicates", "measurement_remarks", "basis_of_record", "basis_of_value" # Double check #TODO