comparison expression_add_biomaterial.xml @ 0:11ec43bed5ea draft

planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 869e5fd8535deca8325777efcd31c70a514b582a
author gga
date Mon, 25 Feb 2019 06:26:58 -0500
parents
children 4843796fcbf6
comparison
equal deleted inserted replaced
-1:000000000000 0:11ec43bed5ea
1 <?xml version="1.0"?>
2 <tool id="expression_add_biomaterial" name="Create a biomaterial" version="@WRAPPER_VERSION@.0">
3 <description>in Tripal</description>
4 <macros>
5 <import>macros.xml</import>
6 </macros>
7 <expand macro="requirements"/>
8 <code file="tripal.py"/>
9 <command detect_errors="aggressive"><![CDATA[
10 tmp_dir=`mktemp -d -p "@DATA_DIR@"` && chmod a+rx "\${tmp_dir}"
11
12 &&
13
14 cp '${file_path}' "\${tmp_dir}/biomaterial_input"
15
16 &&
17
18 @AUTH@
19
20 tripaille expression add_biomaterial
21 '$organism_id'
22 "\${tmp_dir}/biomaterial_input"
23 '$file_path.extension'
24
25 &&
26
27 echo "Data loaded" > $results
28 ]]></command>
29 <inputs>
30 <!-- arguments -->
31 <param argument="organism_id" type="select" dynamic_options="list_organisms()" label="Organism" />
32 <param name="file_path" label="Biomaterial description sheet" argument="file_path" type="data" format="xml,tsv,csv" help="A file describing the biomaterial" />
33 </inputs>
34 <outputs>
35 <data format="txt" name="results"/>
36 </outputs>
37 <help>
38 Add a new biomaterial to the database
39
40 @HELP@
41 </help>
42 </tool>