-
Notifications
You must be signed in to change notification settings - Fork 88
/
bacterial_prepare_unannotated.cwl
63 lines (59 loc) · 1.23 KB
/
bacterial_prepare_unannotated.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
cwlVersion: v1.2
label: "Prepare Unannotated Sequences"
doc: "Prepare Unannotated Sequences"
class: CommandLineTool
baseCommand: bacterial_prepare_unannotated
arguments: [ -submission-mode-genbank, -nogenbank ]
inputs:
asn_cache:
type: Directory
inputBinding:
prefix: -asn-cache
gc_assembly:
type: File
inputBinding:
prefix: -gc-assembly
ids:
type: File
inputBinding:
prefix: -ids
submit_block:
type: File
inputBinding:
prefix: -submit-block
taxon_db:
type: File
inputBinding:
prefix: -taxon-db
no_internet:
type: boolean?
inputBinding:
prefix: -no-internet
master_desc_name:
type: string?
default: master-desc.asn
inputBinding:
prefix: -master-desc
sequences_name:
type: string?
default: sequences.asn
inputBinding:
prefix: -o
plasmids_name:
type: string?
default: plasmids.seqids
inputBinding:
prefix: -plasmids
outputs:
master_desc:
type: File
outputBinding:
glob: $(inputs.master_desc_name)
sequences:
type: File
outputBinding:
glob: $(inputs.sequences_name)
plasmids:
type: File
outputBinding:
glob: $(inputs.plasmids_name)