Sleep

sleep · 0 contributors · 1 version

sleep for the given number of seconds

Quickstart

from janis_unix.tools.sleep import Sleep

wf = WorkflowBuilder("myworkflow")

wf.step(
    "sleep_step",
    Sleep(
        time=None,
    )
)
wf.output("out", source=sleep_step.out)

OR

  1. Install Janis
  2. Ensure Janis is configured to work with Docker or Singularity.
  3. Ensure all reference files are available:

Note

More information about these inputs are available below.

  1. Generate user input files for sleep:
# user inputs
janis inputs sleep > inputs.yaml

inputs.yaml

time: 0
  1. Run sleep with:
janis run [...run options] \
    --inputs inputs.yaml \
    sleep

Information

ID:sleep
URL:No URL to the documentation was provided
Versions:v1.0.0
Container:ubuntu@sha256:1d7b639619bdca2d008eca2d5293e3c43ff84cbee597ff76de3b7a7de3e84956
Authors:
Citations:None
Created:None
Updated:None

Outputs

name type documentation
out stdout<File>  

Additional configuration (inputs)

name type prefix position documentation
time Integer   1  

Workflow Description Language

version development

task sleep {
  input {
    Int? runtime_cpu
    Int? runtime_memory
    Int? runtime_seconds
    Int? runtime_disks
    Int time
  }
  command <<<
    set -e
    sleep \
      ~{time}
  >>>
  runtime {
    cpu: select_first([runtime_cpu, 1])
    disks: "local-disk ~{select_first([runtime_disks, 20])} SSD"
    docker: "ubuntu@sha256:1d7b639619bdca2d008eca2d5293e3c43ff84cbee597ff76de3b7a7de3e84956"
    duration: select_first([runtime_seconds, (time + 30), 86400])
    memory: "~{select_first([runtime_memory, 4])}G"
    preemptible: 2
  }
  output {
    File out = stdout()
  }
}

Common Workflow Language

#!/usr/bin/env cwl-runner
class: CommandLineTool
cwlVersion: v1.2
label: Sleep
doc: sleep for the given number of seconds

requirements:
- class: ShellCommandRequirement
- class: InlineJavascriptRequirement
- class: DockerRequirement
  dockerPull: ubuntu@sha256:1d7b639619bdca2d008eca2d5293e3c43ff84cbee597ff76de3b7a7de3e84956

inputs:
- id: time
  label: time
  type: int
  inputBinding:
    position: 1

outputs:
- id: out
  label: out
  type: stdout
stdout: _stdout
stderr: _stderr

baseCommand: sleep
arguments: []

hints:
- class: ToolTimeLimit
  timelimit: |-
    $([inputs.runtime_seconds, (inputs.time + 30), 86400].filter(function (inner) { return inner != null })[0])
id: sleep