SiLeBAT / FSK-Lab

FSK Lab
https://foodrisklabs.bfr.bund.de/fsk-lab/
GNU General Public License v3.0
2 stars 4 forks source link

Quotes in annotation spreadsheets #198

Open miguelalba opened 6 years ago

miguelalba commented 6 years ago

Currently users need to provide strings and file parameters in the annotation spreadsheet with surrounding quotes. For example:

ID Value
Input_conc "conc_inputs3.csv"
Input_EGR "EGR_inputs3.csv"
Input_ROP "ROP_inputs3.csv"
Input_r_time "r_time_inputs3.csv"

These parameters produce the following R script for a simulation:

Input_conc <- "conc_inputs3.csv"
Input_EGR <- "EGR_inputs3.csv"
Input_ROP <- "ROP_inputs3.csv"
Input_r_time <- "r_time_inputs3.csv"

It would be desirable to allow parameter values in the annotation spreadsheet without quotes, so that the importer code would take care of adding the necessary quotes according to the parameter type. E.g. string and file paths.

Nodes affected

Writer node

Reader node

Runner node

schuelet commented 3 years ago

@miguelalba What is the status here?