Parses the DNA trial balance report into tabular csv format
using Pkg
Pkg.add("https://github.com/AgCountryFCS/VULParser.jl")
Run tests:
]
test
The module exports a single function which takes a CM_TRIAL.VUL file as input, and returns a dataframe.
using CSV
using VULParser
df = VULParser.VUL({path to CM_TRIAL.VUL})
# Save output to CSV
CSV.write({filename.csv}, df)