Mercurial > repos > iuc > ncbi_eutils_efetch
view efetch.xml @ 10:0ccb2855dd55 draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 851b88d92fa7740880a5edf407f629bf3f7f7bf0
author | iuc |
---|---|
date | Fri, 04 Oct 2024 14:35:17 +0000 |
parents | 4194e47b45d4 |
children |
line wrap: on
line source
<tool id="ncbi_eutils_efetch" name="NCBI EFetch" version="@WRAPPER_VERSION@" profile="@PROFILE@"> <description>fetch records from NCBI</description> <macros> <import>macros.xml</import> </macros> <expand macro="requirements"/> <version_command>python efetch.py --version</version_command> <command detect_errors="aggressive"><![CDATA[ python '$__tool_directory__/efetch.py' $db.db_select @LIST_OR_HIST@ @EMAIL_ARGUMENTS@ @EFETCH_FORMAT_TOKEN@ ]]></command> <inputs> <expand macro="list_or_hist"/> <expand macro="efetchdb"/> </inputs> <outputs> <collection name="output1" type="list" label="NCBI EFetch results"> <discover_datasets pattern="__designation_and_ext__" directory="downloads"/> </collection> </outputs> <tests> <test> <param name="db_select" value="taxonomy"/> <param name="output_format" value="none-xml-xml"/> <param name="qss" value="id_list"/> <param name="id_list" value="10239"/> <output_collection name="output1" type="list" count="1"> <element name="EFetch-None-xml-chunk1" ftype="xml" file="viruses.tax.xml" lines_diff="2" /> </output_collection> </test> <test> <param name="db_select" value="nuccore"/> <param name="output_format" value="fasta-text-fasta"/> <param name="qss" value="id_file"/> <param name="id_file" value="efetchin.tabular"/> <output_collection name="output1" type="list" count="1"> <element name="EFetch-fasta-text-chunk1" ftype="fasta"> <assert_contents> <has_text text="XM_036034467"/> <has_text text="NC_040910"/> </assert_contents> </element> </output_collection> </test> </tests> <help><![CDATA[ NCBI Entrez EFetch ================== Responds to a list of UIDs in a given database with the corresponding data records in a specified format. Example Queries --------------- Fetch PMIDs 17284678 and 9997 as text abstracts: +----------------------+--------------------------------------+ | Parameter | Value | +======================+======================================+ | NCBI Database to Use | PubMed | +----------------------+--------------------------------------+ | ID List | 17284678 9997 | +----------------------+--------------------------------------+ | Output Format | Abstract | +----------------------+--------------------------------------+ Fetch FASTA for a transcript and its protein product (GIs 312836839 and 34577063) +----------------------+--------------------------------------+ | Parameter | Value | +======================+======================================+ | NCBI Database to Use | Protein | +----------------------+--------------------------------------+ | ID List | 312836839 34577063 | +----------------------+--------------------------------------+ | Output Format | Fasta | +----------------------+--------------------------------------+ @REFERENCES@ @DISCLAIMER@ ]]></help> <expand macro="citations"/> </tool>