Mercurial > repos > gga > tripal_expression_add_biomaterial
annotate expression_add_biomaterial.xml @ 2:dff7e67d3073 draft default tip
"planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit ea279e5b47cf3d5767328d17b0e40e57b0238ea1"
author | gga |
---|---|
date | Wed, 14 Aug 2019 09:54:23 -0400 |
parents | 069b2039e193 |
children |
rev | line source |
---|---|
0
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
1 <?xml version="1.0"?> |
2
dff7e67d3073
"planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit ea279e5b47cf3d5767328d17b0e40e57b0238ea1"
gga
parents:
1
diff
changeset
|
2 <tool id="expression_add_biomaterial" name="Create a biomaterial" version="@WRAPPER_VERSION@.1"> |
0
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
3 <description>in Tripal</description> |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
4 <macros> |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
5 <import>macros.xml</import> |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
6 </macros> |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
7 <expand macro="requirements"/> |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
8 <code file="tripal.py"/> |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
9 <command detect_errors="aggressive"><![CDATA[ |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
10 tmp_dir=`mktemp -d -p "@DATA_DIR@"` && chmod a+rx "\${tmp_dir}" |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
11 |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
12 && |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
13 |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
14 cp '${file_path}' "\${tmp_dir}/biomaterial_input" |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
15 |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
16 && |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
17 |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
18 @AUTH@ |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
19 |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
20 tripaille expression add_biomaterial |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
21 '$organism_id' |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
22 "\${tmp_dir}/biomaterial_input" |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
23 '$file_path.extension' |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
24 |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
25 && |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
26 |
1
069b2039e193
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 35c5eff77b573a66f3611b4906417df9a440c857
gga
parents:
0
diff
changeset
|
27 echo "Data loaded" > '$results' |
0
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
28 ]]></command> |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
29 <inputs> |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
30 <!-- arguments --> |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
31 <param argument="organism_id" type="select" dynamic_options="list_organisms()" label="Organism" /> |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
32 <param name="file_path" label="Biomaterial description sheet" argument="file_path" type="data" format="xml,tsv,csv" help="A file describing the biomaterial" /> |
2
dff7e67d3073
"planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit ea279e5b47cf3d5767328d17b0e40e57b0238ea1"
gga
parents:
1
diff
changeset
|
33 |
dff7e67d3073
"planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit ea279e5b47cf3d5767328d17b0e40e57b0238ea1"
gga
parents:
1
diff
changeset
|
34 <expand macro="wait_for"/> |
0
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
35 </inputs> |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
36 <outputs> |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
37 <data format="txt" name="results"/> |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
38 </outputs> |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
39 <help> |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
40 Add a new biomaterial to the database |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
41 |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
42 @HELP@ |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
43 </help> |
0f6c9307d6f3
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/tripal commit 690532f4a8e36a334b2d4e15b832532fc1bb8d39
gga
parents:
diff
changeset
|
44 </tool> |