Fetches study design results from DMS. Checks that study design files are internally consistent. DMS functionality not useful outside of PNNL unless connected through VPN.
path_to_study_design_from_DMS()
: gets location of study design files from
the DMS.
read_study_design_from_DMS()
: reads study design tables from the DMS data
package folder.
write_study_design_to_DMS()
: writes study design tables to the DMS so
that they can be accessed by others.
path_to_study_design_from_DMS(data_package_num)
read_study_design_from_DMS(data_package_num, useHTTP = FALSE)
write_study_design_to_DMS(data_package_num, study_design, overwrite = FALSE)
if (is_PNNL_DMS_connection_successful()) {
study_design <- read_study_design_from_DMS(3606)
fractions <- study_design$fractions
samples <- study_design$samples
references <- study_design$references
}