Created
November 26, 2020 07:16
-
-
Save joelnitta/cb09664f8123a69122bf9f06b1ad1576 to your computer and use it in GitHub Desktop.
fastp (single-end) cwl tool
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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