|
1 | 1 | #!/usr/bin/env cwl-runner
|
2 | 2 | cwlVersion: v1.0
|
3 | 3 | class: CommandLineTool
|
4 |
| - |
5 | 4 | label: Kallisto quant
|
6 |
| -doc: | |
| 5 | +doc: |2 |
7 | 6 |
|
8 | 7 | Docs: https://pachterlab.github.io/kallisto/
|
9 | 8 |
|
@@ -36,147 +35,124 @@ doc: |
|
36 | 35 | -t, --threads=INT Number of threads to use (default: 1)
|
37 | 36 | --verbose Print out progress information every 1M proccessed reads
|
38 | 37 |
|
39 |
| - |
40 |
| - This CWL was adapted from: https://github.com/common-workflow-library/bio-cwl-tools/commit/91c42fb809ce18eafe16155cca0abf362270c0fe |
41 |
| - |
42 |
| - |
43 |
| -hints: |
44 |
| - DockerRequirement: |
45 |
| - dockerPull: quay.io/biocontainers/kallisto:0.51.1--ha4fb952_1 |
46 |
| - SoftwareRequirement: |
47 |
| - packages: |
48 |
| - - package: kallisto |
49 |
| - version: [ "0.51.1" ] |
50 |
| - specs: [ https://identifiers.org/biotools/kallisto ] |
51 |
| - |
52 | 38 | inputs:
|
53 |
| - InputReads: |
54 |
| - type: File[] |
55 |
| - format: edam:format_1930 # FASTQ |
| 39 | + BootstrapSamples: |
| 40 | + type: int? |
56 | 41 | inputBinding:
|
57 |
| - position: 200 |
58 |
| - |
59 |
| - QuantOutfolder: |
60 |
| - type: string |
61 |
| - |
| 42 | + prefix: --bootstrap-samples= |
| 43 | + separate: false |
| 44 | + FragmentLength: |
| 45 | + type: double? |
| 46 | + inputBinding: |
| 47 | + prefix: --fragment-length= |
| 48 | + separate: false |
| 49 | + GenomeBam: |
| 50 | + type: |
| 51 | + - 'null' |
| 52 | + - name: genome_bam |
| 53 | + type: record |
| 54 | + fields: |
| 55 | + chromosomes: |
| 56 | + type: File |
| 57 | + inputBinding: |
| 58 | + prefix: --chromosomes |
| 59 | + genomebam: |
| 60 | + type: boolean |
| 61 | + inputBinding: |
| 62 | + prefix: --genomebam |
| 63 | + gtf: |
| 64 | + type: File |
| 65 | + inputBinding: |
| 66 | + prefix: --gtf |
62 | 67 | Index:
|
63 | 68 | type: File
|
64 | 69 | inputBinding:
|
| 70 | + prefix: --index |
65 | 71 | position: 1
|
66 |
| - prefix: "--index" |
67 |
| - |
68 |
| - isSingle: |
69 |
| - type: boolean |
70 |
| - inputBinding: |
71 |
| - position: 2 |
72 |
| - prefix: "--single" |
73 |
| - |
74 |
| - #Optional Inputs |
75 |
| - |
76 |
| - isBias: |
77 |
| - type: boolean? |
78 |
| - inputBinding: |
79 |
| - prefix: "--bias" |
80 |
| - |
81 |
| - isFusion: |
82 |
| - type: boolean? |
| 72 | + InputReads: |
| 73 | + type: File[] |
| 74 | + format: edam:format_1930 |
83 | 75 | inputBinding:
|
84 |
| - prefix: "--fusion" |
85 |
| - |
86 |
| - isSingleOverhang: |
| 76 | + position: 200 |
| 77 | + PseudoBam: |
87 | 78 | type: boolean?
|
88 | 79 | inputBinding:
|
89 |
| - prefix: "--single-overhang" |
90 |
| - |
91 |
| - FragmentLength: |
92 |
| - type: double? |
| 80 | + prefix: --pseudobam |
| 81 | + QuantOutfolder: |
| 82 | + type: string |
| 83 | + Seed: |
| 84 | + type: int? |
93 | 85 | inputBinding:
|
94 |
| - separate: false |
95 |
| - prefix: "--fragment-length=" |
96 |
| - |
| 86 | + prefix: --seed |
97 | 87 | StandardDeviation:
|
98 | 88 | type: double?
|
99 | 89 | inputBinding:
|
100 |
| - prefix: "--sd" |
101 |
| - |
102 |
| - BootstrapSamples: |
103 |
| - type: int? |
104 |
| - inputBinding: |
105 |
| - separate: false |
106 |
| - prefix: "--bootstrap-samples=" |
107 |
| - |
108 |
| - Seed: |
109 |
| - type: int? |
110 |
| - inputBinding: |
111 |
| - prefix: "--seed" |
112 |
| - |
113 |
| -#Using record inputs to create mutually exclusive inputs |
| 90 | + prefix: --sd |
114 | 91 | Strand:
|
115 | 92 | type:
|
116 |
| - - "null" |
117 |
| - - type: record |
118 |
| - name: forward |
119 |
| - fields: |
120 |
| - forward: |
121 |
| - type: boolean |
122 |
| - inputBinding: |
123 |
| - prefix: "--fr-stranded" |
124 |
| - |
125 |
| - - type: record |
126 |
| - name: reverse |
127 |
| - fields: |
128 |
| - reverse: |
129 |
| - type: boolean |
130 |
| - inputBinding: |
131 |
| - prefix: "--rf-stranded" |
132 |
| - |
133 |
| - PseudoBam: |
| 93 | + - 'null' |
| 94 | + - name: forward |
| 95 | + type: record |
| 96 | + fields: |
| 97 | + forward: |
| 98 | + type: boolean |
| 99 | + inputBinding: |
| 100 | + prefix: --fr-stranded |
| 101 | + - name: reverse |
| 102 | + type: record |
| 103 | + fields: |
| 104 | + reverse: |
| 105 | + type: boolean |
| 106 | + inputBinding: |
| 107 | + prefix: --rf-stranded |
| 108 | + isBias: |
134 | 109 | type: boolean?
|
135 | 110 | inputBinding:
|
136 |
| - prefix: "--pseudobam" |
137 |
| - |
138 |
| -#Using record inputs to create dependent inputs |
139 |
| - |
140 |
| - GenomeBam: |
141 |
| - type: |
142 |
| - - "null" |
143 |
| - - type: record |
144 |
| - name: genome_bam |
145 |
| - fields: |
146 |
| - genomebam: |
147 |
| - type: boolean |
148 |
| - inputBinding: |
149 |
| - prefix: "--genomebam" |
150 |
| - |
151 |
| - gtf: |
152 |
| - type: File |
153 |
| - inputBinding: |
154 |
| - prefix: "--gtf" |
155 |
| - |
156 |
| - chromosomes: |
157 |
| - type: File |
158 |
| - inputBinding: |
159 |
| - prefix: "--chromosomes" |
160 |
| - |
161 |
| -baseCommand: [ kallisto, quant ] |
162 |
| - |
163 |
| -arguments: [ "--output-dir", $(inputs.QuantOutfolder) ] |
| 111 | + prefix: --bias |
| 112 | + isFusion: |
| 113 | + type: boolean? |
| 114 | + inputBinding: |
| 115 | + prefix: --fusion |
| 116 | + isSingle: |
| 117 | + type: boolean |
| 118 | + inputBinding: |
| 119 | + prefix: --single |
| 120 | + position: 2 |
| 121 | + isSingleOverhang: |
| 122 | + type: boolean? |
| 123 | + inputBinding: |
| 124 | + prefix: --single-overhang |
164 | 125 |
|
165 | 126 | outputs:
|
166 |
| - |
167 | 127 | kallistoQuantOutDir:
|
168 | 128 | type: Directory
|
169 | 129 | outputBinding:
|
170 | 130 | glob: $(runtime.outdir)/$(inputs.QuantOutfolder)
|
171 | 131 |
|
| 132 | +baseCommand: |
| 133 | +- kallisto |
| 134 | +- quant |
| 135 | +arguments: |
| 136 | +- --output-dir |
| 137 | +- $(inputs.QuantOutfolder) |
| 138 | + |
| 139 | +hints: |
| 140 | + DockerRequirement: |
| 141 | + dockerPull: quay.io/biocontainers/kallisto:0.51.1--ha4fb952_1 |
| 142 | + SoftwareRequirement: |
| 143 | + packages: |
| 144 | + - package: kallisto |
| 145 | + specs: |
| 146 | + - https://identifiers.org/biotools/kallisto |
| 147 | + version: |
| 148 | + - 0.51.1 |
172 | 149 |
|
173 | 150 | $namespaces:
|
174 | 151 | edam: https://edamontology.org/
|
175 | 152 | s: https://schema.org/
|
176 | 153 | $schemas:
|
177 |
| - - https://edamontology.org/EDAM_1.25.owl |
178 |
| - - https://schema.org/version/latest/schemaorg-current-https.rdf |
179 |
| - |
180 |
| -s:license: https://spdx.org/licenses/BSD-2-Clause |
| 154 | +- https://edamontology.org/EDAM_1.25.owl |
| 155 | +- https://schema.org/version/latest/schemaorg-current-https.rdf |
181 | 156 | s:citation: https://dx.doi.org/10.1038/nbt.3519
|
182 | 157 | s:codeRepository: https://github.com/pachterlab/kallisto
|
| 158 | +s:license: https://spdx.org/licenses/BSD-2-Clause |
0 commit comments