Mercurial > repos > tduigou > icfree_instructor
annotate instructor.xml @ 1:444a90deafa9 draft
planemo upload for repository https://github.com/brsynth/icfree-ml commit 13e7cacbe8d65c6e798625de6bba986e89def461
| author | tduigou |
|---|---|
| date | Mon, 06 Mar 2023 14:28:03 +0000 |
| parents | f60f2f6ec0cc |
| children | fba5810f3946 |
| rev | line source |
|---|---|
|
0
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
1 <tool id="icfree_instructor" name="iCFree instructor" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" license="@LICENCE@"> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
2 <description>Generates a list of Echo-compatible instructions to prepare samples</description> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
3 <macros> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
4 <import>macros.xml</import> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
5 </macros> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
6 <expand macro="requirements"/> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
7 <expand macro="stdio"/> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
8 <command detect_errors="exit_code"><![CDATA[ |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
9 #if str($conditional_source_json.type) == "collection": |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
10 #for $input in $conditional_source_json.collection.keys(): |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
11 ln -sfn $conditional_source_json.collection[$input] '.' && |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
12 #end for |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
13 #set input_source_json = '" "'.join([str($file) for $file in $conditional_source_json.collection[$input]]) |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
14 #elif str($conditional_source_json.type) == "files": |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
15 #set input_source_json = '" "'.join([str($file) for $file in $conditional_source_json.files]) |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
16 #end if |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
17 |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
18 #if str($conditional_source_tsv.type) == "collection": |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
19 #for $input in $conditional_source_tsv.collection.keys(): |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
20 ln -sfn $conditional_source_tsv.collection[$input] '.' && |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
21 #end for |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
22 #set input_source_tsv = '" "'.join([str($file) for $file in $conditional_source_tsv.collection[$input]]) |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
23 #elif str($conditional_source_tsv.type) == "files": |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
24 #set input_source_tsv = [] |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
25 #for $f in $conditional_source_tsv.files |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
26 ln -sfn '$f' '$f.element_identifier' && |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
27 #silent input_source_tsv.append(str($f.element_identifier)) |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
28 #end for |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
29 #set inputs_source_tsv = '" "'.join(input_source_tsv) |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
30 #end if |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
31 |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
32 |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
33 #if str($conditional_destination_json.type) == "collection": |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
34 #for $input in $conditional_destination_json.collection.keys(): |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
35 ln -sfn $conditional_destination_json.collection[$input] '.' && |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
36 #end for |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
37 #set input_destination_json = '" "'.join([str($file) for $file in $conditional_destination_json.collection[$input]]) |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
38 #elif str($conditional_destination_json.type) == "files": |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
39 #set input_destination_json = '" "'.join([str($file) for $file in $conditional_destination_json.files]) |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
40 #end if |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
41 |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
42 #if str($conditional_destination_tsv.type) == "collection": |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
43 #for $input in $conditional_destination_tsv.collection.keys(): |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
44 ln -sfn $conditional_destination_tsv.collection[$input] '.' && |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
45 #end for |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
46 #set input_destination_tsv = '" "'.join([str($file) for $file in $conditional_destination_tsv.collection[$input]]) |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
47 #elif str($conditional_destination_tsv.type) == "files": |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
48 #set input_destination_tsv = [] |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
49 #for $f in $conditional_destination_tsv.files |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
50 ln -sfn '$f' '$f.element_identifier' && |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
51 #silent input_destination_tsv.append(str($f.element_identifier)) |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
52 #end for |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
53 #set inputs_destination_tsv = '" "'.join(input_destination_tsv) |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
54 #end if |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
55 |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
56 |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
57 python -m icfree.instructor |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
58 --source_plates "${input_source_json}" |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
59 --source_wells "${inputs_source_tsv}" |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
60 --dest_plates "${input_destination_json}" |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
61 --dest_wells "${inputs_destination_tsv}" |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
62 --robot '$adv.robot' |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
63 --output-folder out |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
64 ]]></command> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
65 <inputs> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
66 <conditional name="conditional_source_json"> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
67 <param name="type" type="select" label="Source plate (json)"> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
68 <option value="files" selected="True">File(s)</option> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
69 <option value="collection">Collection</option> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
70 </param> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
71 <when value="files"> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
72 <param name="files" type="data" format="json" multiple="true" label="Source plates information (json)" /> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
73 </when> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
74 <when value="collection"> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
75 <param name="collection" type="data_collection" collection_type="list" format="json" label="Source plates information (json)" /> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
76 </when> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
77 </conditional> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
78 <conditional name="conditional_source_tsv"> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
79 <param name="type" type="select" label="Source plate (tsv)"> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
80 <option value="files" selected="True">File(s)</option> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
81 <option value="collection">Collection</option> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
82 </param> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
83 <when value="files"> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
84 <param name="files" type="data" format="tabular" multiple="true" label="Source plates information (tsv)" /> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
85 </when> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
86 <when value="collection"> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
87 <param name="collection" type="data_collection" collection_type="list" format="tabular" label="Source plates information (tsv)" /> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
88 </when> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
89 </conditional> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
90 <conditional name="conditional_destination_json"> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
91 <param name="type" type="select" label="Source plate (json)"> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
92 <option value="files" selected="True">File(s)</option> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
93 <option value="collection">Collection</option> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
94 </param> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
95 <when value="files"> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
96 <param name="files" type="data" format="json" multiple="true" label="Destination plates information (json)" /> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
97 </when> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
98 <when value="collection"> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
99 <param name="collection" type="data_collection" collection_type="list" format="json" label="Destination plates information (json)" /> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
100 </when> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
101 </conditional> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
102 <conditional name="conditional_destination_tsv"> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
103 <param name="type" type="select" label="Source plate (tsv)"> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
104 <option value="files" selected="True">File(s)</option> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
105 <option value="collection">Collection</option> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
106 </param> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
107 <when value="files"> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
108 <param name="files" type="data" format="tabular" multiple="true" label="Destination plates information (tsv)" /> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
109 </when> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
110 <when value="collection"> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
111 <param name="collection" type="data_collection" collection_type="list" format="tabular" label="Destination plates information (tsv)" /> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
112 </when> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
113 </conditional> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
114 <section name="adv" title="Advanced Options" expanded="false"> |
|
1
444a90deafa9
planemo upload for repository https://github.com/brsynth/icfree-ml commit 13e7cacbe8d65c6e798625de6bba986e89def461
tduigou
parents:
0
diff
changeset
|
115 <param name="robot" type="text" value="echo" label="Robot name"> |
|
444a90deafa9
planemo upload for repository https://github.com/brsynth/icfree-ml commit 13e7cacbe8d65c6e798625de6bba986e89def461
tduigou
parents:
0
diff
changeset
|
116 <validator type="empty_field" message="Not empty"/> |
|
444a90deafa9
planemo upload for repository https://github.com/brsynth/icfree-ml commit 13e7cacbe8d65c6e798625de6bba986e89def461
tduigou
parents:
0
diff
changeset
|
117 </param> |
|
0
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
118 </section> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
119 </inputs> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
120 <outputs> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
121 <data name="tabulars" format="tabular"> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
122 <discover_datasets pattern="__designation__" ext="tabular" directory="out" /> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
123 </data> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
124 </outputs> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
125 <tests> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
126 <test> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
127 <!-- test 1: check if identical outputs are produced with default parameters --> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
128 <conditional name="conditional_source_json"> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
129 <param name="type" value="files"/> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
130 <param name="files" value="plates_generator_source_plate_1.json" /> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
131 </conditional> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
132 <conditional name="conditional_source_tsv"> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
133 <param name="type" value="files"/> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
134 <param name="files" value="plates_generator_source_plate_1.tsv" /> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
135 </conditional> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
136 <conditional name="conditional_destination_json"> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
137 <param name="type" value="files"/> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
138 <param name="files" value="plates_generator_destination_plate_1.json" /> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
139 </conditional> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
140 <conditional name="conditional_destination_tsv"> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
141 <param name="type" value="files"/> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
142 <param name="files" value="plates_generator_destination_plate_1.tsv" /> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
143 </conditional> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
144 <output name="tabulars" ftype="tabular"> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
145 <discovered_dataset designation="volumes_warnings.tsv" ftype="tabular"> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
146 <assert_contents> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
147 <has_n_lines n="12"/> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
148 <has_line_matching expression="^Parameter\tMin\tMax\tPlate$"/> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
149 </assert_contents> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
150 </discovered_dataset> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
151 <discovered_dataset designation="instructions.csv" ftype="tabular"> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
152 <assert_contents> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
153 <has_line_matching expression="^Source Plate Name,Source Plate Type,Source Well,Destination Plate Name,Destination Well,Transfer Volume,Sample ID$"/> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
154 <has_n_lines n="1701"/> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
155 </assert_contents> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
156 |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
157 </discovered_dataset> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
158 </output> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
159 </test> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
160 </tests> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
161 <help><![CDATA[ |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
162 Instructor |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
163 ========== |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
164 |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
165 The module generates a list of instructions to perform the experiment. |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
166 |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
167 Input |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
168 ----- |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
169 Required: |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
170 * **Source plates file**: description of the source plates (source well name, source well volume...) (JSON format) |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
171 * **Destination plates file**: description of the destination plates (destination well name, destination well volume...) (JSON format) |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
172 |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
173 Advanced options: |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
174 ----------------- |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
175 * **Robot name**: name of the robot to generate instructions for (default: "echo") |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
176 |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
177 Output |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
178 ------ |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
179 * **instructions**: contains the instructions to perform the experiment |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
180 * **volumes_warning**: contains the volumes that may cause issues with the chosen robot |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
181 ]]></help> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
182 <expand macro="creator"/> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
183 <expand macro="citation"/> |
|
f60f2f6ec0cc
planemo upload for repository https://github.com/brsynth/icfree-ml commit d87d4a4d7c894f2d884a71a2acc35f93bc5bbe4b
tduigou
parents:
diff
changeset
|
184 </tool> |
