LogoLogo
  • Overview
  • publisher
    • Introduction
    • Getting Started
      • Logging in to Publisher
    • Data Sources
      • Connecting a Data Source
      • Managing a Data Source
      • Connectors
        • AWS S3 Permissions
        • Connecting to AWS S3 Storage
        • Google Cloud Storage (GCS) Permissions
        • Connecting to Google Cloud Storage
        • PostgreSQL Permissions
        • Connecting to PostgreSQL
        • PostgreSQL on Azure Permissions
        • Microsoft Azure Blob Storage Permissions
        • Connecting to Microsoft Azure Blob Storage
        • Connecting to HTTPS
        • Connecting to other sources via Trino
          • BigQuery
    • Collections
      • Creating a Collection
      • Sharing a Collection
      • Collection Filters
      • Editing Collection Metadata
      • Updating Collection Contents
    • Access Policies
      • Creating an Access Policy
      • Managing Access Policies
    • Questions
      • Adding Questions
      • Example Question
    • Settings
      • Viewing Current and Past Administrators
      • Adding an Administrator
      • Removing an Administrator
      • Setting Notification Preferences
  • Explorer
    • Introduction
    • Viewing a Collection
    • Browsing Collections
    • Asking Questions
    • Accessing a Private Collection
      • Requesting Access to a Private Collection
    • Filtering Data in Tables
      • Strings
      • Dates
      • Numbers
  • Workbench
    • Introduction
    • Getting Started
      • Logging into Workbench
      • Connecting an Engine
      • Finding or Importing a Workflow
      • Configuring Workflow Inputs
      • Running and Monitoring a Workflow
      • Locating Outputs
    • Engines
      • Adding and Updating an Engine
        • On AWS HealthOmics
        • On Microsoft Azure
        • On Google Cloud Platform
        • On Premises
      • Parameters
        • AWS HealthOmics
        • Google Cloud Platform
        • Microsoft Azure
        • On-Premises
        • Cromwell
        • Amazon Genomics CLI
    • Workflows
      • Finding Workflows
      • Adding a Workflow
      • Supported Languages
      • Repositories
        • Dockstore
    • Instruments
      • Getting Started with Instruments
      • Connecting a Storage Account
      • Using Sample Data in a Workflow
      • Running Workflows Using Samples
      • Family Based Analysis with Pedigree Information
      • Monitor the Workflow
      • CLI Reference
        • Instruments
        • Storage
        • Samples
        • OpenAPI Specification
    • Entities
    • Terminology
  • Passport
    • Introduction
    • Registering an Email Address for a Google Identity
  • Command Line Interface
    • Installation
    • Usage Examples
    • Working with JSON Data
    • Reference
      • workbench
        • runs submit
        • runs list
        • runs describe
        • runs cancel
        • runs delete
        • runs logs
        • runs tasks list
        • runs events list
        • engines list
        • engines describe
        • engines parameters list
        • engines parameters describe
        • engines health-checks list
        • workflows create
        • workflows list
        • workflows describe
        • workflows update
        • workflows delete
        • workflows versions create
        • workflows versions list
        • workflows versions describe
        • workflows versions files
        • workflows versions update
        • workflows versions delete
        • workflows versions defaults create
        • workflows versions defaults list
        • workflows versions defaults describe
        • workflows versions defaults update
        • workflows versions defaults delete
        • namespaces get-default
        • storage add
        • storage delete
        • storage describe
        • storage list
        • storage update
        • storage platforms add
        • storage platforms delete
        • storage platforms describe
        • storage platforms list
        • samples list
        • samples describe
        • samples files list
      • publisher
        • datasources list
  • Analysis
    • Python Library
    • Popular Environments
      • Cromwell
      • CWL Tool
      • Terra
      • Nextflow
      • DNAnexus
Powered by GitBook

© DNAstack. All rights reserved.

On this page
  • Available Parameters
  • workflow_failure_mode=STRING
  • write_to_cache=BOOLEAN
  • read_from_cache=BOOLEAN
  • delete_intermediate_output_files=BOOLEAN
  • final_workflow_outputs_dir=STRING
  • final_call_logs_dir=STRING
  • final_workflow_log_dir=STRING
  • final_workflow_metadata_dir=STRING
  • use_relative_output_paths=BOOLEAN
  • call_caching=OBJECT
  • default_runtime_attributes=OBJECT
  • default_backend=STRING
  • allow_result_reuse=BOOLEAN
  • disallow_result_reuse=BOOLEAN
  • imported_file_metadata=STRING

Was this helpful?

  1. Workbench
  2. Engines
  3. Parameters

Cromwell

PreviousOn-PremisesNextAmazon Genomics CLI

Last updated 3 months ago

Was this helpful?

supports submitting workflows to deployed in many different environments. While there are some configuration options that are different depending on the environment, there are some common parameters that are supported across all environments.

Available Parameters

workflow_failure_mode=STRING

Determines what happens when a call fails. Valid options are "NoNewCalls" and "ContinueWhilePossible". "NoNewCalls" will stop execution of all remaining calls in the workflow, while "ContinueWhilePossible" will continue executing other calls in the workflow as long as their dependencies are satisfied.

write_to_cache=BOOLEAN

Specifies whether to write the outputs of successful calls to the call cache. Default is true.

read_from_cache=BOOLEAN

Specifies whether to read the outputs of previously successful calls from the call cache. Default is true.

delete_intermediate_output_files=BOOLEAN

Specifies whether to delete intermediate output files. Default is false.

final_workflow_outputs_dir=STRING

Specifies a directory to which final output files should be copied. This can be a local path or a URI.

final_call_logs_dir=STRING

Specifies a directory to which call logs should be copied. This can be a local path or a URI.

final_workflow_log_dir=STRING

Specifies a directory to which the final workflow log should be copied. This can be a local path or a URI.

final_workflow_metadata_dir=STRING

Specifies a directory to which the final workflow metadata should be copied. This can be a local path or a URI.

use_relative_output_paths=BOOLEAN

Specifies whether to use relative output paths in workflow outputs. Default is false.

call_caching=OBJECT

A JSON object containing the call caching configuration. Example:

{
  "call_caching": {
    "enable": true,
    "read_from_cache": true,
    "write_to_cache": true
  }
}

default_runtime_attributes=OBJECT

A JSON object containing the default runtime attributes. Example:

{
  "default_runtime_attributes": {
    "maxRetries": 1
  }
}

default_backend=STRING

Specifies the default backend to use for workflow execution. Default is "Local".

allow_result_reuse=BOOLEAN

Specifies whether to allow reuse of previously calculated results. Default is true.

disallow_result_reuse=BOOLEAN

Specifies whether to disallow reuse of previously calculated results. Default is false.

imported_file_metadata=STRING

Specifies the metadata file for imported files. This can be a local path or a URI.

Workbench
Cromwell