Skip to contents

Ingest "Export.csv" file and perform ETL prep for "PROJECT" and "SUBMISSION" database tables

Usage

read_export(file)

Arguments

file

String, the full path to the .csv file

Value

A data frame, containing the transformed data to be written out to the "PROJECT" and "SUBMISSION" database tables

Examples

if (FALSE) { # \dontrun{

path <- "path/to/Export.csv"

read_export(
    file = path
)
} # }