view organism_add_organism.xml @ 9:7b552f5cb694 draft

planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/chado commit 35c5eff77b573a66f3611b4906417df9a440c857
author gga
date Tue, 05 Mar 2019 05:14:43 -0500
parents ad220cb1ce2b
children 7c212f0d1381
line wrap: on
line source

<?xml version="1.0"?>
<tool id="organism_add_organism" name="Chado organism add" version="@WRAPPER_VERSION@.0">
    <description></description>
	<macros>
		<import>macros.xml</import>
	</macros>
	<expand macro="requirements"/>
	<command detect_errors="aggressive"><![CDATA[
@AUTH@

chakin organism add_organism
'$genus'
'$species'
'$common'
'$abbr'

#if $comment:
  --comment '$comment'
#end if

| jq -S . > '$results'
    ]]></command>
	<inputs>
    <!-- arguments -->
	<param name="genus" label="Genus" argument="genus" type="text" help="The genus of the organism" />
	<param name="species" label="Species" argument="species" type="text" help="The species of the organism" />
	<param name="common" label="Common" argument="common" type="text" help="The common name of the organism" />
	<param name="abbr" label="Abbr" argument="abbr" type="text" help="The abbreviation of the organism" />

    <!-- options -->
	<param name="comment" label="Comment" argument="--comment" type="text" help="A comment / description" />

	</inputs>
	<outputs>
		<data format="json" name="results"/>
	</outputs>
	<help>
Add a new organism to the Chado database

@HELP@
	</help>
</tool>