Mercurial > repos > devteam > data_manager_fetch_ncbi_taxonomy
view data_manager/ncbi_taxonomy_fetcher.xml @ 7:34a5799a65fa draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_fetch_ncbi_taxonomy/ commit a54e50916ebdb0858b049cdc549a43df801e1a71
author | iuc |
---|---|
date | Tue, 21 May 2024 07:36:09 +0000 |
parents | 6dd9e00dea95 |
children |
line wrap: on
line source
<?xml version="1.0"?> <tool id="ncbi_taxonomy_fetcher" name="NCBI" tool_type="manage_data" version="1.0.4" profile="23.0"> <description>taxonomy downloader</description> <requirements> <requirement type="package" version="3.7">python</requirement> </requirements> <command detect_errors="exit_code"> <![CDATA[ python '$__tool_directory__/data_manager.py' --out '${out_file}' #if $taxonomy_url: --url '${taxonomy_url}' #end if #if $database_name: --name '${database_name}' #end if $name_maps $partial_data ]]> </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="taxonomy_url" type="text" value='ftp://ftp.ncbi.nih.gov/pub/taxonomy/taxdump.tar.gz' label="Enter URL for taxonomy files" /> <param name="name_maps" type="boolean" truevalue="--name-maps" falsevalue="" label="Also download accession2taxid data" checked="false" /> <param name="partial_data" type="hidden" value="" help="Used for testing"/> </inputs> <outputs> <data name="out_file" format="data_manager_json" /> </outputs> <tests> <test> <param name="database_name" value="tax_name"/> <output name="out_file" value="taxonomy.json"/> </test> <test> <param name="database_name" value="tax_name"/> <param name="name_maps" value="true"/> <param name="partial_data" value="--partial"/> <output name="out_file" value="taxonomy_with_accession2taxid.json"/> </test> </tests> <help> Download a taxonomy dump from a provided URL. The default URL is the latest dump from NCBI taxonomy. The accession2taxid data comes from ftp://ftp.ncbi.nlm.nih.gov/pub/taxonomy/accession2taxid/ and can be used by the Diamond data_manager (uses ~20Gb as of 2021). </help> </tool>