annotate plates_designer.xml @ 5:8cacb4b6edbd draft default tip

planemo upload for repository https://github.com/brsynth/icfree-ml commit 89b220357cba84350590ce79306440e78df97be5-dirty
author tduigou
date Fri, 22 Nov 2024 11:37:19 +0000
parents 5d3a54198bf9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
b3c862e8497f planemo upload for repository https://github.com/brsynth/icfree-ml commit 96a30e92eab3144b924fdba7b63be10b218160a7-dirty
tduigou
parents: 0
diff changeset
1 <tool id="icfree_plates_designer" name="iCFree plates designer" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" license="MIT">
0
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
2 <description>Prepare source and destination well-plate mappings with advanced options.</description>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
3 <macros>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
4 <import>macros.xml</import>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
5 </macros>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
6 <expand macro="requirements"/>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
7 <command detect_errors="exit_code"><![CDATA[
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
8 #set well_capacity = []
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
9 #set dead_volumes = []
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
10 #for $x in $adv.rep
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
11 #silent well_capacity.append(str($x.component_name) + "=" + str($x.well_capacity))
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
12 #silent dead_volumes.append(str($x.component_name) + "=" + str($x.dead_volumes))
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
13 #end for
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
14 #set swell_capacity = ','.join($well_capacity)
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
15 #set sdead_volumes = ','.join($dead_volumes)
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
16
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
17 python -m icfree.plate_designer
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
18 '$sampling_file'
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
19 '$sample_volume'
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
20 --start_well_src_plt '$adv.start_well_src_plt'
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
21 --start_well_dst_plt '$adv.start_well_dst_plt'
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
22 --plate_dims '$adv.plate_dims'
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
23 #if len($well_capacity) > 0
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
24 --well_capacity '$swell_capacity'
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
25 #end if
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
26 --default_well_capacity '$adv.default_well_capacity'
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
27 #if len($dead_volumes) > 0
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
28 --dead_volumes '$sdead_volumes'
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
29 #end if
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
30 --default_dead_volume '$adv.default_dead_volume'
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
31 --num_replicates '$adv.num_replicates' &&
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
32 mv source_plate.csv '$output_source_plate' &&
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
33 mv destination_plate.csv '$output_destination_plate'
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
34 ]]></command>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
35 <inputs>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
36 <param name="sampling_file" type="data" format="csv" label="Sampling file" />
1
b3c862e8497f planemo upload for repository https://github.com/brsynth/icfree-ml commit 96a30e92eab3144b924fdba7b63be10b218160a7-dirty
tduigou
parents: 0
diff changeset
37 <param name="sample_volume" type="integer" value="10000" min="1" max="1000000" label="Wanted sample volume in the destination plate" />
0
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
38 <section name="adv" title="Advanced Options" expanded="false">
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
39 <param name="start_well_src_plt" type="text" value="A1" label="Starting well for the source plate">
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
40 <validator type="empty_field" message="Not empty"/>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
41 <validator type="regex" message="Some letters followed by a number">^(?:[A-K]{1}([1-9]|1[0-2]))$</validator>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
42 </param>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
43 <param name="start_well_dst_plt" type="text" value="A1" label="Starting well for the destination plate">
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
44 <validator type="empty_field" message="Not empty"/>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
45 <validator type="regex" message="Some letters followed by a number">^(?:[A-K]{1}([1-9]|1[0-2]))$</validator>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
46 </param>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
47 <param name="plate_dims" type="text" value="16x24" label="Plate dimensions (Format: NxM)">
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
48 <validator type="empty_field" message="Not empty"/>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
49 <validator type="regex" message="An 'x' separator is expected">^(?:\d+x\d+)$</validator>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
50 </param>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
51 <param name="default_well_capacity" type="integer" value="60000" min="1" max="250000" label="Default well capacity in nL for components not specified in well_capacity" />
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
52 <param name="default_dead_volume" type="integer" value="15000" min="1" max="250000" label="Default dead volume in nL for the source plate"/>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
53 <param name="num_replicates" type="integer" value="1" min="1" max="10" label="Number of wanted replicates"/>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
54 <repeat name="rep" title="Specific components">
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
55 <param name="component_name" type="text" value="" label="Component Name">
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
56 <validator type="empty_field" message="Not empty"/>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
57 </param>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
58 <param name="well_capacity" type="integer" value="60000" min="1" max="250000" label="Well capacity" />
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
59 <param name="dead_volumes" type="integer" value="15000" min="1" max="250000" label="Dead volumes" />
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
60 </repeat>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
61 </section>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
62 </inputs>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
63 <outputs>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
64 <data name="output_source_plate" format="csv" label="${tool.name} - Source" />
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
65 <data name="output_destination_plate" format="csv" label="${tool.name} - Destination" />
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
66 </outputs>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
67 <tests>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
68 <test>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
69 <!-- python -m icfree.plate_designer sampling.test-1.csv 6000 -default_well_capacity 60000 -default_dead_volume 20000 -num_replicates 1 -->
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
70 <param name="sampling_file" value="sampling.test-1.csv" />
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
71 <param name="sample_volume" value="6000" />
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
72 <param name="default_well_capacity" value="60000" />
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
73 <param name="default_dead_volume" value="20000" />
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
74 <param name="num_replicates" value="1" />
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
75 <output name="output_source_plate" file="plates_designer.source_plate.test-1.csv" ftype="csv" compare="diff" />
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
76 <output name="output_destination_plate" file="plates_designer.destination_plate.test-1.csv" ftype="csv" compare="diff" />
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
77 </test>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
78 <test>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
79 <!-- python -m icfree.plate_designer sampling.test-1.csv '5000' -start_well_src_plt 'A1' -start_well_dst_plt 'A1' -plate_dims '16x24' -well_capacity 'Hela lysate=3000,Access prot 50X=4000,Reaction mix=3000,RNA 1ug/uL=2000' -default_well_capacity '60000' -dead_volumes 'Hela lysate=30,Access prot 50X=5,Reaction mix=10,RNA 1ug/uL=20' -default_dead_volume '20000' -num_replicates '2' -->
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
80 <param name="sampling_file" value="sampling.test-1.csv" />
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
81 <param name="sample_volume" value="5000" />
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
82 <param name="default_well_capacity" value="60000" />
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
83 <param name="default_dead_volume" value="20000" />
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
84 <param name="num_replicates" value="2" />
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
85 <repeat name="rep">
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
86 <param name="component_name" value="Hela lysate" />
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
87 <param name="well_capacity" value="3000" />
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
88 <param name="dead_volumes" value="30" />
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
89 </repeat>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
90 <repeat name="rep">
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
91 <param name="component_name" value="Access prot 50%" />
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
92 <param name="well_capacity" value="4000" />
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
93 <param name="dead_volumes" value="5" />
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
94 </repeat>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
95 <repeat name="rep">
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
96 <param name="component_name" value="Reaction mix" />
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
97 <param name="well_capacity" value="3000" />
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
98 <param name="dead_volumes" value="10" />
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
99 </repeat>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
100 <repeat name="rep">
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
101 <param name="component_name" value="RNA 1ug/uL" />
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
102 <param name="well_capacity" value="2000" />
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
103 <param name="dead_volumes" value="20" />
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
104 </repeat>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
105 <output name="output_source_plate" file="plates_designer.source_plate.test-2.csv" ftype="csv" compare="diff" />
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
106 <output name="output_destination_plate" file="plates_designer.destination_plate.test-2.csv" ftype="csv" compare="diff" />
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
107 </test>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
108 </tests>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
109 <help><![CDATA[
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
110 Plates Generator
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
111 ================
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
112
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
113 Prepare source and destination well-plate mappings with advanced options.
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
114 ]]></help>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
115 <expand macro="creator"/>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
116 <expand macro="citation"/>
92adc3382124 planemo upload for repository https://github.com/brsynth/icfree-ml commit 7640e2163acff6c925cba16188eaa4ce54639180
tduigou
parents:
diff changeset
117 </tool>