Skip to content

Commit 7bdf360

Browse files
committed
format kallisto
1 parent f8d40ff commit 7bdf360

File tree

2 files changed

+120
-150
lines changed

2 files changed

+120
-150
lines changed

Kallisto/Kallisto-Index.cwl

+29-35
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
#!/usr/bin/env cwl-runner
22
cwlVersion: v1.0
33
class: CommandLineTool
4-
54
label: Kallisto index
6-
doc: |
5+
doc: |2
76

87
Docs: https://pachterlab.github.io/kallisto/
98

@@ -26,61 +25,56 @@ doc: |
2625
-m, --min-size=INT Length of minimizers (default: automatically chosen)
2726
-e, --ec-max-size=INT Maximum number of targets in an equivalence class (default: no maximum)
2827

29-
This CWL was adapted from: https://github.com/common-workflow-library/bio-cwl-tools/commit/91c42fb809ce18eafe16155cca0abf362270c0fe
30-
31-
hints:
32-
DockerRequirement:
33-
dockerPull: quay.io/biocontainers/kallisto:0.51.1--ha4fb952_1
34-
SoftwareRequirement:
35-
packages:
36-
- package: kallisto
37-
version: [ "0.51.1" ]
38-
specs:
39-
- https://identifiers.org/rrid/RRID:SCR_016582
40-
- https://identifiers.org/biotools/kallisto
41-
42-
baseCommand: [kallisto, index]
43-
4428
inputs:
45-
inputFasta:
46-
type: File[]
47-
format: edam:format_1929 # FASTA
48-
inputBinding:
49-
position: 200
50-
5129
IndexName:
5230
type: string
5331
inputBinding:
54-
prefix: "--index="
55-
separate: false
32+
prefix: --index=
5633
valueFrom: $(self).kallistoIndex
57-
58-
#Optional arguments
59-
34+
separate: false
35+
inputFasta:
36+
type: File[]
37+
format: edam:format_1929
38+
inputBinding:
39+
position: 200
6040
kmerSize:
6141
type: int?
6242
inputBinding:
63-
prefix: "--kmer-size="
43+
prefix: --kmer-size=
6444
separate: false
65-
6645
makeUnique:
6746
type: boolean?
6847
inputBinding:
69-
prefix: "--make-unique"
48+
prefix: --make-unique
7049

7150
outputs:
7251
index:
7352
type: File
7453
outputBinding:
7554
glob: $(inputs.IndexName).kallistoIndex
7655

56+
baseCommand:
57+
- kallisto
58+
- index
59+
60+
hints:
61+
DockerRequirement:
62+
dockerPull: quay.io/biocontainers/kallisto:0.51.1--ha4fb952_1
63+
SoftwareRequirement:
64+
packages:
65+
- package: kallisto
66+
specs:
67+
- https://identifiers.org/rrid/RRID:SCR_016582
68+
- https://identifiers.org/biotools/kallisto
69+
version:
70+
- 0.51.1
71+
7772
$namespaces:
7873
edam: https://edamontology.org/
7974
s: https://schema.org/
8075
$schemas:
81-
- https://edamontology.org/EDAM_1.25.owl
82-
- https://schema.org/version/latest/schemaorg-current-https.rdf
83-
84-
s:license: https://spdx.org/licenses/BSD-2-Clause
76+
- https://edamontology.org/EDAM_1.25.owl
77+
- https://schema.org/version/latest/schemaorg-current-https.rdf
8578
s:citation: https://dx.doi.org/10.1038/nbt.3519
8679
s:codeRepository: https://github.com/pachterlab/kallisto
80+
s:license: https://spdx.org/licenses/BSD-2-Clause

Kallisto/Kallisto-Quant.cwl

100755100644
+91-115
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
#!/usr/bin/env cwl-runner
22
cwlVersion: v1.0
33
class: CommandLineTool
4-
54
label: Kallisto quant
6-
doc: |
5+
doc: |2
76

87
Docs: https://pachterlab.github.io/kallisto/
98

@@ -36,147 +35,124 @@ doc: |
3635
-t, --threads=INT Number of threads to use (default: 1)
3736
--verbose Print out progress information every 1M proccessed reads
3837

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-
5238
inputs:
53-
InputReads:
54-
type: File[]
55-
format: edam:format_1930 # FASTQ
39+
BootstrapSamples:
40+
type: int?
5641
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
6267
Index:
6368
type: File
6469
inputBinding:
70+
prefix: --index
6571
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
8375
inputBinding:
84-
prefix: "--fusion"
85-
86-
isSingleOverhang:
76+
position: 200
77+
PseudoBam:
8778
type: boolean?
8879
inputBinding:
89-
prefix: "--single-overhang"
90-
91-
FragmentLength:
92-
type: double?
80+
prefix: --pseudobam
81+
QuantOutfolder:
82+
type: string
83+
Seed:
84+
type: int?
9385
inputBinding:
94-
separate: false
95-
prefix: "--fragment-length="
96-
86+
prefix: --seed
9787
StandardDeviation:
9888
type: double?
9989
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
11491
Strand:
11592
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:
134109
type: boolean?
135110
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
164125

165126
outputs:
166-
167127
kallistoQuantOutDir:
168128
type: Directory
169129
outputBinding:
170130
glob: $(runtime.outdir)/$(inputs.QuantOutfolder)
171131

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
172149

173150
$namespaces:
174151
edam: https://edamontology.org/
175152
s: https://schema.org/
176153
$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
181156
s:citation: https://dx.doi.org/10.1038/nbt.3519
182157
s:codeRepository: https://github.com/pachterlab/kallisto
158+
s:license: https://spdx.org/licenses/BSD-2-Clause

0 commit comments

Comments
 (0)