annotate tools/human_genome_variation/ctd.xml @ 0:9071e359b9a3

Uploaded
author xuebing
date Fri, 09 Mar 2012 19:37:19 -0500
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
1 <tool id="hgv_ctdBatch" name="CTD" version="1.0.0">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
2 <description>analysis of chemicals, diseases, or genes</description>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
3
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
4 <command interpreter="perl">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
5 ctd.pl $input $numerical_column $inType.inputType
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
6 #if $inType.inputType == "disease"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
7 $inType.report ANY
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
8 #else if $inType.reportType.report == "cgixns"
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
9 $inType.reportType.report $inType.reportType.actType
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
10 #else
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
11 $inType.reportType.report ANY
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
12 #end if
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
13 $out_file1
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
14 </command>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
15
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
16 <inputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
17 <param name="input" type="data" format="tabular" label="Dataset" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
18 <param name="numerical_column" type="data_column" data_ref="input" label="Column with identifiers" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
19 <conditional name="inType">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
20 <param name="inputType" label="Identifier type" type="select">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
21 <option value="chem">Chemicals (MeSH names, synonyms or accession IDs, or CAS RNs)</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
22 <option value="disease">Diseases (MeSH or OMIM names, synonyms or accession IDs)</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
23 <option value="gene" selected="true">Genes (NCBI official symbols or accession IDs)</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
24 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
25 <when value="chem">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
26 <conditional name='reportType'>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
27 <param name="report" label="Data to extract" type="select">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
28 <option value="cgixns">Curated chemical-gene interactions</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
29 <option value="genes">Curated gene associations</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
30 <option value="pathways">Pathway associations</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
31 <option value="diseases" selected="true">All disease relationships</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
32 <option value="diseases_direct"> Direct disease relationships only</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
33 <option value="diseases_inferred"> Inferred disease relationships only</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
34 <option value="go">All GO associations</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
35 <option value="go_p"> GO biological Processes only</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
36 <option value="go_f"> GO molecular Functions only</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
37 <option value="go_c"> GO cellular Components only</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
38 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
39 <when value="genes">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
40 <!-- do nothing -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
41 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
42 <when value="pathways">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
43 <!-- do nothing -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
44 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
45 <when value="diseases">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
46 <!-- do nothing -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
47 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
48 <when value="diseases_direct">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
49 <!-- do nothing -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
50 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
51 <when value="diseases_inferred">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
52 <!-- do nothing -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
53 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
54 <when value="go">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
55 <!-- do nothing -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
56 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
57 <when value="go_p">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
58 <!-- do nothing -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
59 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
60 <when value="go_f">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
61 <!-- do nothing -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
62 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
63 <when value="go_c">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
64 <!-- do nothing -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
65 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
66 <when value="cgixns">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
67 <param name="actType" label="Interaction type" type="select">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
68 <option value="ANY">ANY</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
69 <option value="abundance">abundance</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
70 <option value="activity">activity</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
71 <option value="binding">binding</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
72 <option value="cotreatment">cotreatment</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
73 <option value="expression">expression</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
74 <option value="folding">folding</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
75 <option value="localization">localization</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
76 <option value="metabolic processing">metabolic processing</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
77 <option value="acetylation">- acetylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
78 <option value="acylation">- acylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
79 <option value="alkylation">- alkylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
80 <option value="amination">- amination</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
81 <option value="carbamoylation">- carbamoylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
82 <option value="carboxylation">- carboxylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
83 <option value="chemical synthesis">- chemical synthesis</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
84 <option value="degradation">- degradation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
85 <option value="cleavage"> - cleavage</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
86 <option value="hydrolysis"> - hydrolysis</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
87 <option value="ethylation">- ethylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
88 <option value="glutathionylation">- glutathionylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
89 <option value="glycation">- glycation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
90 <option value="glycosylation">- glycosylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
91 <option value="N-linked glycosylation"> - N-linked glycosylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
92 <option value="O-linked glycosylation"> - O-linked glycosylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
93 <option value="glucuronidation"> - glucuronidation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
94 <option value="hydroxylation">- hydroxylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
95 <option value="lipidation">- lipidation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
96 <option value="farnesylation"> - farnesylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
97 <option value="geranolyation"> - geranolyation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
98 <option value="myristolylation"> - myristolylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
99 <option value="palmitoylation"> - palmitoylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
100 <option value="prenylation"> - prenylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
101 <option value="methylation">- methylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
102 <option value="nitrosation">- nitrosation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
103 <option value="nucleotidylation">- nucleotidylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
104 <option value="oxidation">- oxidation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
105 <option value="phosphorylation">- phosphorylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
106 <option value="reduction">- reduction</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
107 <option value="ribosylation">- ribosylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
108 <option value="ADP-ribosylation"> - ADP-ribosylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
109 <option value="sulfation">- sulfation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
110 <option value="sumoylation">- sumoylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
111 <option value="ubiquitination">- ubiquitination</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
112 <option value="mutagenesis">mutagenesis</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
113 <option value="reaction">reaction</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
114 <option value="response to chemical">response to chemical</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
115 <option value="splicing">splicing</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
116 <option value="stability">stability</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
117 <option value="transport">transport</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
118 <option value="secretion">- secretion</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
119 <option value="export"> - export</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
120 <option value="uptake">- uptake</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
121 <option value="import"> - import</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
122 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
123 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
124 </conditional>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
125 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
126 <when value="disease">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
127 <param name="report" label="Data to extract" type="select">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
128 <option value="chems">Chemical associations</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
129 <option value="chems_direct">Chemical associations direct relationships only</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
130 <option value="chems_inferred">Chemical associations inferred relationships only</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
131 <option value="genes">Curated gene associations</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
132 <option value="pathways">Pathway associations</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
133 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
134 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
135 <when value="gene">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
136 <conditional name='reportType'>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
137 <param name="report" label="Data to extract" type="select">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
138 <option value="cgixns">Curated chemical-gene interactions</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
139 <option value="chems">Curated chemical associations</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
140 <option value="pathways">Pathway associations</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
141 <option value="diseases" selected="true">All disease relationships</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
142 <option value="diseases_direct"> Direct disease relationships only</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
143 <option value="diseases_inferred"> Inferred disease relationships only</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
144 <option value="go">All GO associations</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
145 <option value="go_p"> GO biological Processes only</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
146 <option value="go_f"> GO molecular Functions only</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
147 <option value="go_c"> GO cellular Components only</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
148 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
149 <when value="chems">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
150 <!-- do nothing -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
151 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
152 <when value="pathways">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
153 <!-- do nothing -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
154 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
155 <when value="diseases">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
156 <!-- do nothing -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
157 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
158 <when value="diseases_direct">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
159 <!-- do nothing -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
160 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
161 <when value="diseases_inferred">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
162 <!-- do nothing -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
163 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
164 <when value="go">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
165 <!-- do nothing -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
166 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
167 <when value="go_p">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
168 <!-- do nothing -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
169 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
170 <when value="go_f">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
171 <!-- do nothing -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
172 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
173 <when value="go_c">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
174 <!-- do nothing -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
175 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
176 <when value="cgixns">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
177 <param name="actType" label="Interaction type" type="select">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
178 <option value="ANY">ANY</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
179 <option value="abundance">abundance</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
180 <option value="activity">activity</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
181 <option value="binding">binding</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
182 <option value="cotreatment">cotreatment</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
183 <option value="expression">expression</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
184 <option value="folding">folding</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
185 <option value="localization">localization</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
186 <option value="metabolic processing">metabolic processing</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
187 <option value="acetylation">- acetylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
188 <option value="acylation">- acylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
189 <option value="alkylation">- alkylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
190 <option value="amination">- amination</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
191 <option value="carbamoylation">- carbamoylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
192 <option value="carboxylation">- carboxylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
193 <option value="chemical synthesis">- chemical synthesis</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
194 <option value="degradation">- degradation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
195 <option value="cleavage"> - cleavage</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
196 <option value="hydrolysis"> - hydrolysis</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
197 <option value="ethylation">- ethylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
198 <option value="glutathionylation">- glutathionylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
199 <option value="glycation">- glycation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
200 <option value="glycosylation">- glycosylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
201 <option value="N-linked glycosylation"> - N-linked glycosylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
202 <option value="O-linked glycosylation"> - O-linked glycosylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
203 <option value="glucuronidation"> - glucuronidation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
204 <option value="hydroxylation">- hydroxylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
205 <option value="lipidation">- lipidation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
206 <option value="farnesylation"> - farnesylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
207 <option value="geranolyation"> - geranolyation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
208 <option value="myristolylation"> - myristolylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
209 <option value="palmitoylation"> - palmitoylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
210 <option value="prenylation"> - prenylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
211 <option value="methylation">- methylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
212 <option value="nitrosation">- nitrosation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
213 <option value="nucleotidylation">- nucleotidylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
214 <option value="oxidation">- oxidation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
215 <option value="phosphorylation">- phosphorylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
216 <option value="reduction">- reduction</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
217 <option value="ribosylation">- ribosylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
218 <option value="ADP-ribosylation"> - ADP-ribosylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
219 <option value="sulfation">- sulfation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
220 <option value="sumoylation">- sumoylation</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
221 <option value="ubiquitination">- ubiquitination</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
222 <option value="mutagenesis">mutagenesis</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
223 <option value="reaction">reaction</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
224 <option value="response to chemical">response to chemical</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
225 <option value="splicing">splicing</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
226 <option value="stability">stability</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
227 <option value="transport">transport</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
228 <option value="secretion">- secretion</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
229 <option value="export"> - export</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
230 <option value="uptake">- uptake</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
231 <option value="import"> - import</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
232 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
233 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
234 </conditional>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
235 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
236 </conditional>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
237 </inputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
238
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
239 <outputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
240 <data format="tabular" name="out_file1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
241 </outputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
242
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
243 <!-- broken for now. will be fixed soon.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
244 <tests>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
245 <test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
246 <param name="input" ftype="tabular" value="ctdBatchInput.txt" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
247 <param name="numerical_column" value="1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
248 <param name="inputType" value="gene" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
249 <param name="report" value="diseases" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
250 <output name="out_file1" file="ctdBatchOut.txt" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
251 </test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
252 </tests>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
253 -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
254
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
255 <help>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
256 **Dataset formats**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
257
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
258 The input and output datasets are tabular_.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
259 (`Dataset missing?`_)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
260
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
261 .. _tabular: ./static/formatHelp.html#tab
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
262 .. _Dataset missing?: ./static/formatHelp.html
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
263
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
264 -----
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
265
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
266 **What it does**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
267
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
268 This tool extracts data related to the provided list of identifiers
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
269 from the Comparative Toxicogenomics Database (CTD). The fields
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
270 extracted vary with the type of data requested; the first row
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
271 of the output identifies the columns.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
272
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
273 For the curated chemical-gene interactions, you can also choose the
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
274 interaction type from the search-and-select box. The choices that
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
275 start with '-' are a subset of a choice above them; you can chose
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
276 either the general interaction type or a more specific one.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
277
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
278 Website: http://ctd.mdibl.org/
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
279
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
280 -----
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
281
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
282 **Examples**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
283
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
284 - input data file:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
285 HBB
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
286
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
287 - select Column = c1, Identifier type = Genes, and Data to extract = All disease relationships
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
288
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
289 - output file::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
290
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
291 #Input GeneSymbol GeneName GeneID DiseaseName DiseaseID GeneDiseaseRelation OmimIDs PubMedIDs
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
292 hbb HBB hemoglobin, beta 3043 Abnormalities, Drug-Induced MESH:D000014 inferred via Ethanol 17676605|18926900
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
293 hbb HBB hemoglobin, beta 3043 Abnormalities, Drug-Induced MESH:D000014 inferred via Valproic Acid 8875741
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
294 etc.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
295
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
296 Another example:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
297
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
298 - same input file:
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
299 HBB
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
300
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
301 - select Column = c1, Identifier type = Genes, Data to extract = Curated chemical-gene interactions, and Interaction type = ANY
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
302
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
303 - output file::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
304
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
305 #Input GeneSymbol GeneName GeneID ChemicalName ChemicalID CasRN Organism OrganismID Interaction InteractionTypes PubMedIDs
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
306 hbb HBB hemoglobin, beta 3043 1-nitronaphthalene C016614 86-57-7 Macaca mulatta 9544 1-nitronaphthalene metabolite binds to HBB protein binding 16453347
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
307 hbb HBB hemoglobin, beta 3043 2,6-diisocyanatotoluene C026942 91-08-7 Cavia porcellus 10141 2,6-diisocyanatotoluene binds to HBB protein binding 8728499
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
308 etc.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
309
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
310 -----
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
311
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
312 **Reference**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
313
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
314 Davis AP, Murphy CG, Saraceni-Richards CA, Rosenstein MC, Wiegers TC, Mattingly CJ. (2009)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
315 Comparative Toxicogenomics Database: a knowledgebase and discovery tool for
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
316 chemical-gene-disease networks.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
317 Nucleic Acids Res. 37(Database issue):D786-92. Epub 2008 Sep 9.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
318
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
319 </help>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
320 </tool>