https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 00022427d5b83a0e3172b8bf24743d9fae334276 authored by mvdbeek on 17 November 2020, 20:02:41 UTC
Update version to 20.09
Tip revision: 0002242
genbank.xml
<tool id="genbank" name="Connect to Genbank" version="1.0.0">
    <!--  <description>queries genbank</description> -->
    <command><![CDATA[
python '$__tool_directory__/genbank.py' $mode '$text' '$output'
    ]]></command>
    <inputs>
        <param name="mode" type="select" label="Get sequences from the">
            <option value="nucleotide">nucleotide database</option>
            <option value="protein">proteins database</option>
        </param>
        <param name="text" type="text" value="6273291" label="with accession ID" />
    </inputs>
    <outputs>
        <data name="output" format="fasta" />
    </outputs>
    <help><![CDATA[
At the moment this tool allows the following simple searches:

- by GI: **51594135**
- by accession: **CF622840**
- using text: **human hbb1** (this feature is experimental)
    ]]></help>
</tool>
back to top