On Predicting the Results of Applying Workflow Management in a Healthcare Context

2012 ◽  
Vol 2 (4) ◽  
pp. 20-34
Author(s):  
Bob Chermin ◽  
Ingmar Frey ◽  
Hajo Reijers ◽  
Harm Smeets

Even though workflow management systems are currently not being applied on a wide scale in healthcare settings, their benefits with respect to operational efficiency and reducing patient risk seem enticing. The authors show how an approach that is rooted in simulation can be useful to predict the benefits of using a workflow management system. The approach is discussed and its application is demonstrated in the setting of the pre-operative process as being executed in the Bronovo hospital. The approach is considered useful for other healthcare organizations in search for a better foundation for the application of workflow technology.

2013 ◽  
pp. 1155-1169
Author(s):  
Bob Chermin ◽  
Ingmar Frey ◽  
Hajo A. Reijers ◽  
Harm Smeets

Even though workflow management systems are currently not being applied on a wide scale in healthcare settings, their benefits with respect to operational efficiency and reducing patient risk seem enticing. The authors show how an approach that is rooted in simulation can be useful to predict the benefits of using a workflow management system. The approach is discussed and its application is demonstrated in the setting of the pre-operative process as being executed in the Bronovo hospital. The approach is considered useful for other healthcare organizations in search for a better foundation for the application of workflow technology.


2021 ◽  
Author(s):  
Azza E Ahmed ◽  
Joshua Allen ◽  
Tajesvi Bhat ◽  
Prakruthi Burra ◽  
Christina E Fliege ◽  
...  

Background: The changing landscape of genomics research and clinical practice has created a need for computational pipelines capable of efficiently orchestrating complex analysis stages while handling large volumes of data across heterogeneous computational environments. Workflow Management Systems (WfMSs) are the software components employed to fill this gap. Results: This work provides an approach and systematic evaluation of key features of popular bioinformatics WfMSs in use today: Nextflow, CWL, and WDL and some of their executors, along with Swift/T, a workflow manager commonly used in high-scale physics applications. We employed two use cases: a variant-calling genomic pipeline and a scalability-testing framework, where both were run locally, on an HPC cluster, and in the cloud. This allowed for evaluation of those four WfMSs in terms of language expressiveness, modularity, scalability, robustness, reproducibility, interoperability, ease of development, along with adoption and usage in research labs and healthcare settings. This article is trying to answer, "which WfMS should be chosen for a given bioinformatics application regardless of analysis type?". Conclusions: The choice of a given WfMS is a function of both its intrinsic language and engine features. Within bioinformatics, where analysts are a mix of dry and wet lab scientists, the choice is also governed by collaborations and adoption within large consortia and technical support provided by the WfMS team/community. As the community and its needs continue to evolve along with computational infrastructure, WfMSs will also evolve, especially those with permissive licenses that allow commercial use. In much the same way as the dataflow paradigm and containerization are now well understood to be very useful in bioinformatics applications, we will continue to see innovations of tools and utilities for other purposes, like big data technologies, interoperability, and provenance.


2021 ◽  
Vol 11 (1) ◽  
Author(s):  
Azza E. Ahmed ◽  
Joshua M. Allen ◽  
Tajesvi Bhat ◽  
Prakruthi Burra ◽  
Christina E. Fliege ◽  
...  

AbstractThe changing landscape of genomics research and clinical practice has created a need for computational pipelines capable of efficiently orchestrating complex analysis stages while handling large volumes of data across heterogeneous computational environments. Workflow Management Systems (WfMSs) are the software components employed to fill this gap. This work provides an approach and systematic evaluation of key features of popular bioinformatics WfMSs in use today: Nextflow, CWL, and WDL and some of their executors, along with Swift/T, a workflow manager commonly used in high-scale physics applications. We employed two use cases: a variant-calling genomic pipeline and a scalability-testing framework, where both were run locally, on an HPC cluster, and in the cloud. This allowed for evaluation of those four WfMSs in terms of language expressiveness, modularity, scalability, robustness, reproducibility, interoperability, ease of development, along with adoption and usage in research labs and healthcare settings. This article is trying to answer, which WfMS should be chosen for a given bioinformatics application regardless of analysis type?. The choice of a given WfMS is a function of both its intrinsic language and engine features. Within bioinformatics, where analysts are a mix of dry and wet lab scientists, the choice is also governed by collaborations and adoption within large consortia and technical support provided by the WfMS team/community. As the community and its needs continue to evolve along with computational infrastructure, WfMSs will also evolve, especially those with permissive licenses that allow commercial use. In much the same way as the dataflow paradigm and containerization are now well understood to be very useful in bioinformatics applications, we will continue to see innovations of tools and utilities for other purposes, like big data technologies, interoperability, and provenance.


2020 ◽  
Author(s):  
Michael J. Jackson ◽  
Edward Wallace ◽  
Kostas Kavoussanakis

AbstractWorkflow management systems represent, manage, and execute multi-step computational analyses and offer many benefits to bioinformaticians. They provide a common language for describing analysis workflows, contributing to reproducibility and to building libraries of reusable components. They can support both incremental build and re-entrancy – the ability to selectively re-execute parts of a workflow in the presence of additional inputs or changes in configuration and to resume execution from where a workflow previously stopped. Many workflow management systems enhance portability by supporting the use of containers, high-performance computing systems and clouds. Most importantly, workflow management systems allow bioinformaticians to delegate how their workflows are run to the workflow management system and its developers. This frees the bioinformaticians to focus on the content of these workflows, their data analyses, and their science.RiboViz is a package to extract biological insight from ribosome profiling data to help advance understanding of protein synthesis. At the heart of RiboViz is an analysis workflow, implemented in a Python script. To conform to best practices for scientific computing which recommend the use of build tools to automate workflows and to re-use code instead of rewriting it, the authors reimplemented this workflow within a workflow management system. To select a workflow management system, a rapid survey of available systems was undertaken, and candidates were shortlisted: Snakemake, cwltool and Toil (implementations of the Common Workflow Language) and Nextflow. An evaluation of each candidate, via rapid prototyping of a subset of the RiboViz workflow, was performed and Nextflow was chosen. The selection process took 10 person-days, a small cost for the assurance that Nextflow best satisfied the authors’ requirements. This use of rapid prototyping can offer a low-cost way of making a more informed selection of software to use within projects, rather than relying solely upon reviews and recommendations by others.Author summaryData analysis involves many steps, as data are wrangled, processed, and analysed using a succession of unrelated software packages. Running all the right steps, in the right order, with the right outputs in the right places is a major source of frustration. Workflow management systems require that each data analysis step be “wrapped” in a structured way, describing its inputs, parameters, and outputs. By writing these wrappers the scientist can focus on the meaning of each step, which is the interesting part. The system uses these wrappers to decide what steps to run and how to run these, and takes charge of running the steps, including reporting on errors. This makes it much easier to repeatedly run the analysis and to run it transparently upon different computers. To select a workflow management system, we surveyed available tools and selected three for “rapid prototype” implementations to evaluate their suitability for our project. We advocate this rapid prototyping as a low-cost (both time and effort) way of making an informed selection of a system for use within a project. We conclude that many similar multi-step data analysis workflows can be rewritten in a workflow management system.


2003 ◽  
Vol 12 (03) ◽  
pp. 365-391 ◽  
Author(s):  
H. A. Reijers ◽  
J. H. M. Rigter ◽  
W. M. P. van der Aalst

On the Dutch workflow market, a new and interesting paradigm named "case handling" is emerging. The goal of case handling is to overcome the limitations of existing workflow management systems. By using a data-driven approach combined with implicit routing and carefully avoiding context tunneling, awareness and flexibility are improved. Currently, many organizations are considering case handling systems such as FLOWer (Pallas Athena) rather than the more traditional workflow management systems. This paper provides a critical assessment of this development. The goal is to show the pro's and con's of case handling. Moreover, based on this assessment, an alternative approach using slightly extended workflow management systems is proposed. This approach is being pursued by the Dutch government in a project involving the workflow management system Staffware. Based on our experiences thus far, we provide guidelines for selecting the proper technology.


2013 ◽  
Vol 442 ◽  
pp. 450-457
Author(s):  
Ning Deng ◽  
Xiao Dong Zhu ◽  
Yuan Ning Liu ◽  
Yan Pu Li ◽  
Ying Chen

Workflow management systems are the powerful tools as well as the best supports for industries which involve series of complex workflows. Specifically, two of the main objectives of workflows management system are (1) ensuring the correctness and integration of workflow advancement, and (2) carrying workflow forward to the maximum extent automatically. To ensure the correctness and integration of workflow management system, in this paper, a workflow management method based on the workflow node property is proposed, and a workflow management system model is given. In addition, in the given model, an automatic advance mode is proposed to make the workflow is able to be carried on automatically.


2007 ◽  
Vol 15 (4) ◽  
pp. 283-297 ◽  
Author(s):  
Emir M. Bahsi ◽  
Emrah Ceyhan ◽  
Tevfik Kosar

Workflows form the essential part of the process execution both in a single machine and in distributed environments. Although providing conditional structures is not mandatory for a workflow management system, support for conditional workflows is very important in terms of error handling, flexibility and robustness. Several of the existing workflow management systems already support conditional structures via use of different constructs. In this paper, we study the most widely used workflow management systems and their support for conditional structures such as if, switch, and while. We compare implementation of common conditional structures using each of these workflow management systems via case studies, and discuss capabilities of each system.


2021 ◽  
Vol 17 (2) ◽  
pp. e1008622
Author(s):  
Michael Jackson ◽  
Kostas Kavoussanakis ◽  
Edward W. J. Wallace

Workflow management systems represent, manage, and execute multistep computational analyses and offer many benefits to bioinformaticians. They provide a common language for describing analysis workflows, contributing to reproducibility and to building libraries of reusable components. They can support both incremental build and re-entrancy—the ability to selectively re-execute parts of a workflow in the presence of additional inputs or changes in configuration and to resume execution from where a workflow previously stopped. Many workflow management systems enhance portability by supporting the use of containers, high-performance computing (HPC) systems, and clouds. Most importantly, workflow management systems allow bioinformaticians to delegate how their workflows are run to the workflow management system and its developers. This frees the bioinformaticians to focus on what these workflows should do, on their data analyses, and on their science. RiboViz is a package to extract biological insight from ribosome profiling data to help advance understanding of protein synthesis. At the heart of RiboViz is an analysis workflow, implemented in a Python script. To conform to best practices for scientific computing which recommend the use of build tools to automate workflows and to reuse code instead of rewriting it, the authors reimplemented this workflow within a workflow management system. To select a workflow management system, a rapid survey of available systems was undertaken, and candidates were shortlisted: Snakemake, cwltool, Toil, and Nextflow. Each candidate was evaluated by quickly prototyping a subset of the RiboViz workflow, and Nextflow was chosen. The selection process took 10 person-days, a small cost for the assurance that Nextflow satisfied the authors’ requirements. The use of prototyping can offer a low-cost way of making a more informed selection of software to use within projects, rather than relying solely upon reviews and recommendations by others.


Author(s):  
Hajo A. Reijers

This chapter describes lightweight workflow as a possible approach to counter many of the issues related to the introduction and sustained use of operational workflow management systems. Aside from a description of the essential features of lightweight workflow, this chapter also provides a reflection on the application of lightweight workflow in practice. Lightweight workflow is a very relevant direction to be aware of for practitioners who consider the use of workflow technology. Researchers may find inspiration from this chapter to further the adoption of workflow management technology.


Sign in / Sign up

Export Citation Format

Share Document