package bistro

  1. Overview
  2. Docs
A library to build and run distributed scientific workflows

Install

Dune Dependency

Authors

Maintainers

Sources

v0.5.0.tar.gz
md5=0ccb7c97728c94d17494b150192f6162
sha512=61dbd0ee5b98cd5fb8871d653aef0e440c318e9fbca439c3b0e4f86a32fa03c2a8a4770cd96b929b21b378db6788fa7d4df15935370be5b7b227564a31994998

doc/bistro.engine/Bistro_engine/Task_result/index.html

Module Bistro_engine.Task_result

type t =
  1. | Input of {
    1. id : string;
    2. path : string;
    3. pass : bool;
    }
  2. | Select of {
    1. id : string;
    2. dir_path : string;
    3. sel : string list;
    4. pass : bool;
    }
  3. | Shell of {
    1. id : string;
    2. descr : string;
    3. outcome : [ `Succeeded | `Missing_output | `Failed ];
    4. exit_code : int;
    5. cmd : string;
    6. file_dumps : Shell_command.file_dump list;
    7. cache : string option;
    8. stdout : string;
    9. stderr : string;
    }
  4. | Plugin of {
    1. id : string;
    2. descr : string;
    3. outcome : [ `Succeeded | `Missing_output | `Failed ];
    4. msg : string option;
    }
  5. | Container_image_fetch of {
    1. id : string;
    2. outcome : (unit, [ `Singularity_failed_pull of int * string ]) result;
    }
val id : t -> string
val name : t -> string
val succeeded : t -> bool
val error_short_descr : t -> string
  • raises [Invalid_argument]

    is succeeded r

val error_long_descr : t -> Db.t -> Buffer.t -> string -> unit
OCaml

Innovation. Community. Security.