comparison masscomb_visual_mspicture.xml @ 0:d6001e8d7441

Push to main toolshed
author pieter.lukasse@wur.nl
date Wed, 08 Jan 2014 11:34:51 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:d6001e8d7441
1 <tool name="MsPicture" id="masscomb_mspicture" version="1.0.1">
2 <description>MS data view</description>
3 <!--
4 For remote debugging start you listener on port 8000 and use the following as command interpreter:
5 java -jar -Xdebug -Xrunjdwp:transport=dt_socket,address=D0100564.wurnet.nl:8000
6 -->
7 <command interpreter="java -jar">
8 MassComb.jar -action MSPICTURE
9 -outputFile $html_file
10 -picturesPath $html_file.files_path
11 -fileGrouping $fileType.type
12 #if $fileType.type == "single"
13 -inputFile $fileType.inputFormatType.inputFile
14 -inputFormat $fileType.inputFormatType.inputFormat
15 #elif $fileType.type == "fileSet"
16 -inputFile $fileType.inputFile
17 #end if
18 -parametersFile $parametersFile
19
20 </command>
21 <inputs>
22 <conditional name="fileType">
23 <param name="type" type="select" label="select MS/MS input type">
24 <option value="single" selected="true">single-File</option>
25 <option value="fileSet">fileSet</option>
26 </param>
27 <when value="single">
28 <conditional name="inputFormatType">
29 <param name="inputFormat" type="select" label="inputFormat">
30 <option value="mzml" selected="true">mzml</option>
31 <option value="mzxml">mzxml</option>
32 <option value="apml">apml</option>
33 </param>
34 <when value="mzxml">
35 <param name="inputFile" type="data" format="mzxml" label="MS input file (mzXML)"/>
36 </when>
37 <when value="mzml">
38 <param name="inputFile" type="data" format="mzml" label="MS input file (mzml)"/>
39 </when>
40 <when value="apml">
41 <param name="inputFile" type="data" format="apml" label="MS or MS/MS input file (APML)"/>
42 </when>
43 </conditional>
44 </when>
45 <when value="fileSet">
46 <param name="inputFile" type="data" format="prims.fileset.zip" label="input file"/>
47 </when>
48 </conditional>
49
50 <param name="data_type" type="select" label="Data type" help="">
51 <option value="LC-MS">LC-MS</option>
52 <option value="LC-MS/MS">LC-MS/MS</option>
53 </param>
54
55 <param name="gray_scale" type="select" display="checkboxes" multiple="True" label="Use gray scale" help="">
56 <option value="Yes">Yes</option>
57 </param>
58
59 </inputs>
60 <configfiles>
61 <configfile name="parametersFile">&lt;?xml version="1.0" encoding="UTF-8"?&gt;
62 &lt;tns:Program xmlns:tns="http://masscomb.pri.com/toolparameters/" name="MsPictureWrapper" program="MsPictureWrapper"&gt;
63 &lt;Files/&gt;
64 &lt;Parameters&gt;
65 &lt;Attribute attributeName="toolLocation" value="/home/lukas007/bin/" type="Unknown" description=""/&gt;
66 &lt;Attribute attributeName="gray_scale" toolSpecificName="--grey" value="${gray_scale}" type="Unknown" description=""/&gt;
67 &lt;Attribute attributeName="data_type" value="${data_type}" type="Unknown" description=""/&gt;
68 &lt;/Parameters&gt;
69 &lt;/tns:Program&gt;
70 </configfile>
71 </configfiles>
72 <outputs>
73 <data format="html" name="html_file" />
74 </outputs>
75 <tests>
76 <test>
77 </test>
78 </tests>
79 <help>
80
81 .. class:: infomark
82
83 This tool displays the MS data using ProteoWizard's msPicture tool
84
85
86 </help>
87 </tool>