|
0
|
1 <tool id="vl_tools_gstudio_datasheet" name="VLT.gstudio_datasheet">
|
|
|
2 <description>
|
|
|
3 Build a Genome Studio datasheet for the given plate
|
|
|
4 </description>
|
|
|
5 <command interpreter="bash">
|
|
|
6 launcher.sh
|
|
|
7 --interpreter=python
|
|
|
8 --runner=kb_query.py
|
|
|
9 --host=$__user_omero_host__
|
|
|
10 --user=$__user_omero_user__
|
|
|
11 --passwd=$__user_omero_password__
|
|
|
12 --operator=$__user_email__
|
|
|
13 --logfile=${logfile}
|
|
|
14 --ofile=${outfile}
|
|
|
15 gstudio_datasheet
|
|
|
16 #if str($plate) != 'no_plate'
|
|
|
17 --plate=${plate}
|
|
|
18 --manifest=${manifest}
|
|
|
19 #end if
|
|
|
20 </command>
|
|
|
21 <inputs>
|
|
|
22 <param name="plate" type="select" label="Titer Plate" ajax = "True" ajax-source = "galaxy/get/titer_plates" sort="True"
|
|
|
23 help="Choose one of the already defined Titer Plates">
|
|
|
24 <option value="no_plate" selected="true">Select a plate from the list</option>
|
|
|
25 </param>
|
|
|
26
|
|
|
27 <param name="manifest" type="select" label="Probes descriptor"
|
|
|
28 help="Choose one of the manifest file description available">
|
|
|
29 <option value="Immuno_BeadChip_11419691_B.bpm">Immuno Chip</option>
|
|
|
30 <option value="HumanOmniExpress-12v1-Multi_H.bpm">OmniExpress Chip</option>
|
|
|
31 <option value="HumanExome-12v1_A.bpm">Exome Chip</option>
|
|
|
32 </param>
|
|
|
33
|
|
|
34 <!-- ************************************************** -->
|
|
|
35
|
|
|
36 </inputs>
|
|
|
37
|
|
|
38 <outputs>
|
|
|
39 <data format="tabular" name="outfile" label="${plate.value}_samplesheet.csv"/>
|
|
|
40 <data format="txt" name="logfile" label="${plate.value}_samplesheet.log"/>
|
|
|
41 </outputs>
|
|
|
42
|
|
|
43 <help>
|
|
|
44 Build a Genome Studio datasheet for the given plate
|
|
|
45 </help>
|
|
|
46 </tool>
|