Mercurial > repos > erick-antezana > onto-toolkit
annotate onto-toolkit/tools/ontology/term_id_vs_term_name.xml @ 1:d2d26d330236
v 0.2: tools added for OPPL-galaxy
author | easr |
---|---|
date | Wed, 11 Apr 2012 10:33:41 +0200 |
parents | 4484575e4186 |
children |
rev | line source |
---|---|
0
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
1 <tool id="term_id_vs_term_name" name="Get all the term IDs and term names of a given OBO ontology" version="1.22"> |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
2 <description>Get all the term IDs and term names of a given OBO ontology</description> |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
3 <command interpreter="perl">/usr/bin/term_id_vs_term_name.pl $input_ontology > $output</command> |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
4 <inputs> |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
5 <param format="text" name="input_ontology" type="data" label="Source file"/> |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
6 </inputs> |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
7 <outputs> |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
8 <data format="tabular" name="output" /> |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
9 </outputs> |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
10 |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
11 <tests> |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
12 <test> |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
13 <param name="input" value="pre_cco_core.obo"/> |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
14 <output name="out_file" file="term_id_vs_term_name.txt"/> |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
15 </test> |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
16 </tests> |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
17 |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
18 <help> |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
19 |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
20 .. class:: infomark |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
21 |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
22 Generates a flat file with two columns (TAB separated) with the term_id and term_name from the elements of the given OBO ontology. |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
23 |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
24 |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
25 **Example** |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
26 |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
27 If you ask for the term IDs and terms names of the Gene Ontology, you will get:: |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
28 |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
29 GO:0050129 N-formylglutamate deformylase activity |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
30 GO:0051663 oocyte nucleus localization involved in oocyte dorsal/ventral axis specification |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
31 GO:0051712 positive regulation of killing of cells of another organism |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
32 GO:0033972 proclavaminate amidinohydrolase activity |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
33 GO:0032513 negative regulation of protein phosphatase type 2B activity |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
34 GO:0008711 ADP-L-glycero-D-manno-heptose synthase activity |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
35 GO:0006285 base-excision repair, AP site formation |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
36 GO:0043527 tRNA methyltransferase complex |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
37 ... |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
38 ... |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
39 |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
40 **More information** |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
41 |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
42 ONTO-PERL: An API supporting the development and analysis of bio-ontologies |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
43 E. Antezana; M. Egana; B. De Baets; M. Kuiper; V. Mironov |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
44 Bioinformatics 2008; doi: 10.1093/bioinformatics/btn042 |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
45 |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
46 </help> |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
47 |
4484575e4186
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
erick-antezana
parents:
diff
changeset
|
48 </tool> |