LocalExecutionProfile localExecutionProfile = new LocalExecutionProfile();
Orchestrator platformOrchestrator = new Orchestrator(workflow, localExecutionProfile, resourceSpace);
platformOrchestrator.orchestrate();
for(ModuleInstance mi : workflow.modules().get(0).instances())
for(InstanceOutput io : mi.outputs())
System.out.print(io.value()+ " ");