-
Notifications
You must be signed in to change notification settings - Fork 12
/
esl-sfetch-index.cwl
44 lines (38 loc) · 1.03 KB
/
esl-sfetch-index.cwl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
cwlVersion: v1.0
class: CommandLineTool
label: index a sequence file for use by esl-sfetch
doc: "https://github.com/EddyRivasLab/easel"
requirements:
ResourceRequirement:
coresMax: 1
ramMin: 1024 # just a default, could be lowered
InitialWorkDirRequirement:
listing: [ $(inputs.sequences) ]
hints:
SoftwareRequirement:
packages:
easel: {}
# specs: [ https://identifiers.org/rrid/RRID:TBD ]
# version: [ "???" ]
inputs:
sequences:
type: File
inputBinding:
position: 1
valueFrom: $(self.basename)
format: edam:format_1929 # FASTA
baseCommand: [ esl-sfetch, --index ]
outputs:
sequences_with_index:
type: File
secondaryFiles: .ssi
format: edam:format_1929 # FASTA
outputBinding:
glob: $(inputs.sequences.basename)
$namespaces:
edam: http://edamontology.org/
s: http://schema.org/
$schemas:
- http://edamontology.org/EDAM_1.16.owl
s:license: "https://www.apache.org/licenses/LICENSE-2.0"
s:copyrightHolder: "EMBL - European Bioinformatics Institute"