Skip to contents

Constellation to Table

  • Create a long table of constellations with one line per mutation per constellation
  • Steps:
    • Clone the cov-lineages constellations repo from here into data/constellations
    • Pull in constellations with constellationsToTable()
    • Received table of label, variant, Gene, Mutation, who
filelist <- list.files("data/constellations/constellations/definition", full.names = T)

l <- purrr::map(filelist, ~ constellationToTable(.x))

constellations <- dplyr::bind_rows(l)

dplyr::glimpse(constellations)
``