Skip to content

Instantly share code, notes, and snippets.

@joelnitta
Created November 26, 2020 07:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joelnitta/cb09664f8123a69122bf9f06b1ad1576 to your computer and use it in GitHub Desktop.
Save joelnitta/cb09664f8123a69122bf9f06b1ad1576 to your computer and use it in GitHub Desktop.
fastp (single-end) cwl tool
cwlVersion: v1.0
class: CommandLineTool
hints:
DockerRequirement:
dockerPull: quay.io/biocontainers/fastp:0.20.1--h8b12597_0
baseCommand: fastp
inputs:
in1:
label: "read1 input file name"
type: File
inputBinding:
prefix: -i
out1:
label: "read1 output file name"
type: string
default: clean.fasta
inputBinding:
prefix: -o
html:
label: "the html format report file name"
type: string
inputBinding:
prefix: -h
json:
label: "the json format report file name"
type: string
inputBinding:
prefix: -j
outputs:
clean_seq:
type: File
outputBinding:
glob: $(inputs.out1)
html_report:
type: File
outputBinding:
glob: $(inputs.html)
json_report:
type: File
outputBinding:
glob: $(inputs.json)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment