This repository was archived by the owner on May 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblast2taxonomy_2.0.yaml
More file actions
148 lines (148 loc) · 5.34 KB
/
blast2taxonomy_2.0.yaml
File metadata and controls
148 lines (148 loc) · 5.34 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
!mobyle/program
name: blast2taxonomy
version: '2.0'
title: blast2taxonomy
description: Blast Taxonomy report
authors: C. Maufrais
inputs: !mobyle/inputparagraph
children:
- !mobyle/inputprogramparameter
prompt: Blast output file
format: '" " + str(value)'
simple: true
argpos: 10
mandatory: true
name: infile
command: false
type: !mobyle/formattedtype
data_terms: ['EDAM_data:0857']
- !mobyle/inputprogramparagraph
prompt: Display options
name: display
argpos: 1
children:
- !mobyle/inputprogramparameter
comment: All hit are display in tree by default.
prompt: Report one branch per organism (-s)
format: ("" , " -s") [value]
name: single
command: false
type: !mobyle/booleantype {default: false}
- !mobyle/inputprogramparameter
prompt: Report accession number (-a)
format: ("" , " -a") [value]
name: acc
command: false
type: !mobyle/booleantype {default: false}
- !mobyle/inputprogramparameter
prompt: Lowest common ancestor name (-n).
format: ("" , " -n " + str(value)) [value is not None]
name: node_name
command: false
type: !mobyle/stringtype {}
- !mobyle/inputprogramparameter
prompt: Select hit blast with e-value lower than value (-E).
format: ("" , " -E " + str(value)) [value and value != vdef]
name: filterevalue
command: false
type: !mobyle/floattype {default: 10.0}
- !mobyle/inputprogramparameter
prompt: Report score and e-value Blast hit (-e).
format: ("" , " -e") [value]
name: evalue
command: false
type: !mobyle/booleantype {default: false}
- !mobyle/inputprogramparameter
prompt: Report ratio of Blast hit length per query length (-l).
format: ("" , " -l") [value]
name: perlen
command: false
type: !mobyle/booleantype {default: false}
- !mobyle/inputprogramparagraph
prompt: Output option
name: output
children:
- !mobyle/inputprogramparameter
prompt: Tabular output (-x)
format: ("" , " -x") [value]
name: xlsoutput
command: false
type: !mobyle/booleantype {default: false}
- !mobyle/inputprogramparameter
prompt: Html output (-w)
format: ("" , " -w") [value]
name: htmloutput
command: false
type: !mobyle/booleantype {default: false}
- !mobyle/inputprogramparameter
prompt: Taxonomy report in Newick format (-t)
format: ("" , " -t") [value]
name: dndoutput
command: false
type: !mobyle/booleantype {default: false}
- !mobyle/inputprogramparameter
prompt: Output file name (-o)
format: ("" , " -o " + str(value)) [value is not None ]
name: outputfile
command: false
type: !mobyle/stringtype {}
outputs: !mobyle/outputparagraph
children:
- !mobyle/outputprogramparagraph
prompt: Output option
name: output
children:
- !mobyle/outputprogramparameter
prompt: Output file
filenames: str(outputfile)
name: outfile_name
precond:
'#and':
- {'#not': htmloutput}
- outputfile
type: !mobyle/formattedtype
data_terms: ['EDAM_data:2048']
- !mobyle/outputprogramparameter
prompt: Output file
filenames: '"blast2taxonomy.out"'
name: outfile
precond:
'#not':
'#and': [htmloutput, outputfile]
output_type: stdout
type: !mobyle/formattedtype
data_terms: ['EDAM_data:2048']
- !mobyle/outputprogramparameter
prompt: Html output file
filenames: ("blast2taxonomy.html", str(outputfile)+".html")[outputfile
is not None]
name: htmloutfile
precond: htmloutput
type: !mobyle/formattedtype
data_terms: ['EDAM_data:2048']
- !mobyle/outputprogramparameter
prompt: Alignment Html output file
filenames: '"alignment.html"'
name: htmloutfilealn
precond: htmloutput
type: !mobyle/formattedtype
data_terms: ['EDAM_data:2048']
- !mobyle/outputprogramparameter
prompt: Newick tree file
filenames: ("blast2taxonomy.dnd", str(outputfile)+".dnd")[outputfile is
not None]
name: dndoutfile
precond: dndoutput
type: !mobyle/formattedtype
format_terms: ['EDAM_format:1910']
data_terms: ['EDAM_data:0872']
- !mobyle/outputprogramparameter
prompt: Standard error
filenames: '"blast2taxonomy.err"'
name: stderr
type: !mobyle/formattedtype
data_terms: ['EDAM_data:2048']
operations: ['EDAM_operation:0258', 'EDAM_operation:0637']
topics: ['EDAM_topic:0182', 'EDAM_topic:0637']
command: blast2taxonomy
env: {}