view get_relationship_id_vs_relationship_name.xml @ 1:42ec3e9fdf7b draft default tip

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/onto-toolkit commit 744e26ea6d468c83ec5904221929092f8a2e78ba"
author iuc
date Wed, 22 Jan 2020 17:24:25 -0500
parents e3e11b9e7750
children
line wrap: on
line source

<tool id="onto_tk_get_relationship_id_vs_relationship_name" name="Get all the relationship IDs and names" version="@VERSION@.0">
    <description>from the given OBO ontology</description>
    <macros>
        <import>onto_macros.xml</import>
    </macros>
    <expand macro="requirements" />
    <command detect_errors="aggressive">
    get_relationship_id_vs_relationship_name.pl
        -f '$input' | sort > '$output'
    </command>
    <inputs>
        <expand macro="input_ontology" />
    </inputs>
    <outputs>
        <data format="tabular" name="output" label="Relationship IDs and names of ${on_string}">
            <actions>
                <action name="column_names" type="metadata" default="releationship ID,releationship name" />
            </actions>
        </data>
    </outputs>
    <tests>
        <test>
            <param name="input" value="pre_cco_core.obo"/>
            <output name="output" file="relationship_id_vs_relationship_name.tab" sort="true"/>
        </test>
    </tests>
    <help>

.. class:: infomark

Generates a flat file with two columns (TAB separated) with the relationship_id and relationship_name from the elements of the given OBO ontology.

    </help>
    <expand macro="citations" />
</tool>