mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 13:50:20 +08:00
69 lines
3.3 KiB
XML
69 lines
3.3 KiB
XML
<tool id="microbial_import1" name="Get Microbial Data">
|
|
<command interpreter="python">microbial_import.py $CDS,$tRNA,$rRNA,$sequence,$GeneMark,$GeneMarkHMM,$Glimmer3 $output</command>
|
|
<inputs>
|
|
<page>
|
|
<display>
|
|
<p><div class="toolFormTitle">Select the Desired Kingdom</div>$kingdom</p>
|
|
</display>
|
|
<param name="kingdom" type="select" display="radio" multiple="False" dynamic_options="get_kingdoms()"/>
|
|
</page>
|
|
<page>
|
|
<display>
|
|
<p><div class="toolFormTitle">Select the Desired Organism</div>$org</p>
|
|
</display>
|
|
<param name="org" type="select" display="radio" multiple="False" dynamic_options="get_orgs_by_kingdom(kingdom)"/>
|
|
</page>
|
|
<page>
|
|
<display>
|
|
<p><div class="toolFormTitle">Select Desired Coding Sequences</div>$CDS</p>
|
|
<p><div class="toolFormTitle">Select Desired tRNA</div>$tRNA</p>
|
|
<p><div class="toolFormTitle">Select Desired rRNA</div>$rRNA</p>
|
|
<p><div class="toolFormTitle">Select Desired DNA Sequences</div>$sequence</p>
|
|
<p><div class="toolFormTitle">Select Desired GeneMark Annotations</div>$GeneMark</p>
|
|
<p><div class="toolFormTitle">Select Desired GeneMarkHMM Annotations</div>$GeneMarkHMM</p>
|
|
<p><div class="toolFormTitle">Select Desired Glimmer3 Annotations</div>$Glimmer3</p>
|
|
<p></p>
|
|
</display>
|
|
<param name="CDS" type="select" display="checkboxes" multiple="True" dynamic_options="get_data_by_kingdom_org_feature(kingdom,org,'CDS')"/>
|
|
<param name="tRNA" type="select" display="checkboxes" multiple="True" dynamic_options="get_data_by_kingdom_org_feature(kingdom,org,'tRNA')"/>
|
|
<param name="rRNA" type="select" display="checkboxes" multiple="True" dynamic_options="get_data_by_kingdom_org_feature(kingdom,org,'rRNA')"/>
|
|
<param name="sequence" type="select" display="checkboxes" multiple="True" dynamic_options="get_data_by_kingdom_org_feature(kingdom,org,'sequence')"/>
|
|
<param name="GeneMark" type="select" display="checkboxes" multiple="True" dynamic_options="get_data_by_kingdom_org_feature(kingdom,org,'GeneMark')"/>
|
|
<param name="GeneMarkHMM" type="select" display="checkboxes" multiple="True" dynamic_options="get_data_by_kingdom_org_feature(kingdom,org,'GeneMarkHMM')"/>
|
|
<param name="Glimmer3" type="select" display="checkboxes" multiple="True" dynamic_options="get_data_by_kingdom_org_feature(kingdom,org,'Glimmer3')"/>
|
|
</page>
|
|
</inputs>
|
|
<outputs>
|
|
<data format="bed" name="output"/>
|
|
</outputs>
|
|
<code file="microbial_import_code.py"/>
|
|
<help>
|
|
|
|
This tool will allow you to obtain various genomic datasets for any completed Microbial Genome Project as listed at NCBI_.
|
|
|
|
.. _NCBI: http://www.ncbi.nlm.nih.gov/genomes/lproks.cgi?view=1
|
|
|
|
Current datasets available include
|
|
1. CDS
|
|
2. tRNA
|
|
3. rRNA
|
|
4. FASTA Sequences
|
|
5. GeneMark Annotations
|
|
6. GeneMarkHMM Annotations
|
|
7. Glimmer3 Annotations
|
|
|
|
-----
|
|
|
|
Organisms in **bold** are available at the UCSC Browser.
|
|
|
|
-----
|
|
|
|
.. class:: infomark
|
|
|
|
**Note:** Having trouble locating your organism? Click here_ for a list of available species and their location.
|
|
|
|
.. _here: http://www.bx.psu.edu/cgi-bin/trac.cgi/wiki/Microbes
|
|
|
|
</help>
|
|
</tool>
|