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