view planemo/lib/python3.7/site-packages/cwltool/tests/utf_doc_example.cwl @ 0:d30785e31577 draft

"planemo upload commit 6eee67778febed82ddd413c3ca40b3183a3898f1"
author guerler
date Fri, 31 Jul 2020 00:18:57 -0400
parents
children
line wrap: on
line source

#!/usr/bin/env cwl-runner
cwlVersion: v1.0
class: CommandLineTool
inputs:
  sequenceFile:
    label: "Sequence file in FASTA format"
    doc: |
          Input sequence file in FASTA format (not compressed/zipped!).
          Can be an assembled genome (genome mode) or transcriptome (DNA,
          transcriptome mode), or protein sequences from an annotated gene set
          (proteins mode).
          NB: select just one transcript/protein per gene for your input,
          otherwise they will appear as ‘Duplicated’ matches.
    # note the "smart quotes" around the word Duplicated above, they are
    # non-ASCII
    type: string
baseCommand: echo

outputs: []