-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQualificationWorkflow.m
More file actions
23 lines (17 loc) · 931 Bytes
/
Copy pathQualificationWorkflow.m
File metadata and controls
23 lines (17 loc) · 931 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
% Script to perform a Qualification Plan workflow
% Qualification Plan Workflow developed with Matlab 2017b
% --------------------------------------------------------------
clear all
close all
tic
REInput_path = 'C:\Qualification-Ontogeny-UGT1A1\re_input';
REOutput_path = 'C:\Qualification-Ontogeny-UGT1A1\output';
% --------------------------------------------------------------
% Get the Configuration Plan Settings
jsonFile = 'report-configuration-plan.json';
[WSettings, ConfigurationPlan, TaskList, ObservedDataSets] = initializeQualificationWorkflow(jsonFile, REInput_path, REOutput_path);
% --------------------------------------------------------------
% run the Worklfow tasklist of ConfigurationPlan
runQualificationWorkflow(WSettings, ConfigurationPlan, TaskList, ObservedDataSets);
QualificationWorkflowTime = toc/60;
fprintf('\n Qualification Workflow Duration: %0.1f minutes \n', QualificationWorkflowTime);