SciFlow-0.4.1: Scientific workflow management system

Safe HaskellNone
LanguageHaskell2010

Scientific.Workflow.Types

Synopsis

Documentation

data WorkflowDB Source #

An abstract type representing the database used to store states of workflow

Constructors

WorkflowDB FilePath 

data Workflow where Source #

Constructors

Workflow :: Processor () o -> Workflow 

type PID = Text Source #

The id of a node

data ProcState Source #

The state of a computation node

data RunOpt Source #

Constructors

RunOpt 

Fields

class Serializable a where Source #

Minimal complete definition

serialize, deserialize

def :: State a () Source #