view data_manager_conf.xml @ 3:19bbd19b74b3 draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_humann_database_downloader commit 32d4c566afe55179531fdd106dc5a996cc09bbb1
author iuc
date Wed, 29 Mar 2023 19:58:02 +0000
parents 60eb2512c5a0
children
line wrap: on
line source

<data_managers>
    <data_manager tool_file="data_manager/data_manager_humann_download.xml" id="data_manager_humann_download" >
        <data_table name="humann_nucleotide_database">  <!-- Defines a Data Table to be modified. -->
            <output> <!-- Handle the output of the Data Manager Tool -->
                <column name="value" />  <!-- columns that are going to be specified by the Data Manager Tool -->
                <column name="name" />  <!-- columns that are going to be specified by the Data Manager Tool -->
                <column name="dbkey" /> <!-- columns that are going to be specified by the Data Manager Tool -->
                <column name="path" output_ref="out_file" >
                    <move type="directory">
                        <source>${path}</source>
                        <target base="${GALAXY_DATA_MANAGER_DATA_PATH}">humann/data/nucleotide_database/${value}</target>
                    </move>
                    <value_translation>${GALAXY_DATA_MANAGER_DATA_PATH}/humann/data/nucleotide_database/${value}</value_translation>
                </column>
            </output>
        </data_table>
        <data_table name="humann_protein_database">  <!-- Defines a Data Table to be modified. -->
            <output> <!-- Handle the output of the Data Manager Tool -->
                <column name="value" />  <!-- columns that are going to be specified by the Data Manager Tool -->
                <column name="name" />  <!-- columns that are going to be specified by the Data Manager Tool -->
                <column name="dbkey" /> <!-- columns that are going to be specified by the Data Manager Tool -->
                <column name="path" output_ref="out_file" >
                    <move type="directory">
                        <source>${path}</source>
                        <target base="${GALAXY_DATA_MANAGER_DATA_PATH}">humann/data/protein_database/${value}</target>
                    </move>
                    <value_translation>${GALAXY_DATA_MANAGER_DATA_PATH}/humann/data/protein_database/${value}</value_translation>
                </column>
            </output>
        </data_table>
        <data_table name="humann_utility_mapping">  <!-- Defines a Data Table to be modified. -->
            <output> <!-- Handle the output of the Data Manager Tool -->
                <column name="value" />  <!-- columns that are going to be specified by the Data Manager Tool -->
                <column name="name" />  <!-- columns that are going to be specified by the Data Manager Tool -->
                <column name="dbkey" /> <!-- columns that are going to be specified by the Data Manager Tool -->
                <column name="path" output_ref="out_file" >
                    <move type="file" relativize_symlinks="False">
                        <source>${path}</source>
                        <target base="${GALAXY_DATA_MANAGER_DATA_PATH}">humann/data/utility_mapping/${value}</target>
                    </move>
                    <value_translation>${GALAXY_DATA_MANAGER_DATA_PATH}/humann/data/utility_mapping/${value}</value_translation>
                </column>
            </output>
        </data_table>
    </data_manager>
</data_managers>