From d5d124c8e23a17c48701c31054c9768df581dd76 Mon Sep 17 00:00:00 2001 From: "Michael R. Crusoe" Date: Sun, 11 Dec 2016 18:49:01 +0200 Subject: [PATCH] include empty.yml --- site/userguide-v1.0-input.json | 5 +++++ v1.0/v1.0/cat2-tool.cwl | 12 ------------ 2 files changed, 5 insertions(+), 12 deletions(-) delete mode 100755 v1.0/v1.0/cat2-tool.cwl diff --git a/site/userguide-v1.0-input.json b/site/userguide-v1.0-input.json index abc4204aa..64f6dcd5d 100644 --- a/site/userguide-v1.0-input.json +++ b/site/userguide-v1.0-input.json @@ -144,6 +144,11 @@ "basename": "tar-job.yml", "class": "File", "location": "../v1.0/examples/tar-job.yml" + }, + { + "basename": "empty.yml", + "class": "File", + "location": "../v1.0/examples/empty.yml" } ] } diff --git a/v1.0/v1.0/cat2-tool.cwl b/v1.0/v1.0/cat2-tool.cwl deleted file mode 100755 index c34762d78..000000000 --- a/v1.0/v1.0/cat2-tool.cwl +++ /dev/null @@ -1,12 +0,0 @@ -#!/usr/bin/env cwl-runner -class: CommandLineTool -cwlVersion: v1.0 -doc: "Print the contents of a file to stdout using 'cat' running in a docker container." -hints: - DockerRequirement: - dockerPull: debian:wheezy -inputs: - file1: File -outputs: [] -baseCommand: cat -stdin: $(inputs.file1.path)