view data_manager/gene_annotation_fetcher.xml @ 48:e4b92f2ca217 draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_fetch_gene_annotation/ commit a54e50916ebdb0858b049cdc549a43df801e1a71
author iuc
date Tue, 21 May 2024 07:36:02 +0000
parents 3a02b8ab423a
children
line wrap: on
line source

<?xml version="1.0"?>
<tool id="gene_annotation_fetcher_data_manager" name="Gene Annotation Fetch" tool_type="manage_data" version="1.0.2" profile="23.0">
    <description>gene annotation fetcher</description>
    <requirements>
        <requirement type="package" version="3.8.3">python</requirement>
    </requirements>
    <command detect_errors="exit_code">
    <![CDATA[
        python '$__tool_directory__/data_manager.py' --out '${out_file}'
        #if $gene_annotation_url:
            --url '${gene_annotation_url}'
        #end if
        #if $database_name:
            --name '${database_name}'
        #end if
    ]]>
    </command>
    <inputs>
        <param name="database_name" type="text" optional="true" label="Name for this database" help="Enter a unique identifier, or leave blank for today's date" />
        <param name="gene_annotation_url" type="text" label="Enter URL for gene annotation files" />
    </inputs>
    <outputs>
        <data format="data_manager_json" name="out_file" />
    </outputs>
    <help>
    </help>
</tool>