comparison samifier.xml @ 1:9f555d1f63b5 draft

Uploaded
author da-intersect
date Mon, 08 Apr 2013 20:49:59 -0400
parents
children
comparison
equal deleted inserted replaced
0:3f69d1efb199 1:9f555d1f63b5
1 <tool id="samifier" name="Samifier" version="1.0.0">
2 <description>Samifier vX.X</description>
3 <command interpreter="bash">
4 javaRunner.sh samifier.jar -c "/usr/local/galaxy-dist/tools/ap11/chromosome/" -g "$genome" -m "$mapping" -o "$output1" -r "$mascot"
5 #if $score_thresold
6 -s "$score_thresold"
7 #end if
8 #if $condition2.tool_option2 == "yes"
9 -l "$output2"
10 #end if
11 #if $condition3.tool_option3 == "yes"
12 -b "$output3"
13 #end if
14 </command>
15 <inputs>
16 <param name="genome" type="data" format="gff" label="Select genome file" help="Genome file in gff format" />
17 <param name="mascot" type="data" format="txt" label="Select Mascot search result" help="Mascot search results file in txt format" />
18 <param name="mapping" type="data" format="txt" label="Select file mapping" help="File mapping protein identifier to ordered locus name" />
19 <param name="score_thresold" type="integer" label="Confidence Score thresold" help="Minimum confidence score for peptides to" optional="true"/>
20
21 <conditional name="condition2">
22 <param name="tool_option2" type="select" label="Write log file" help="Create an output containing the logs">
23 <option value="yes" selected="No">Yes</option>
24 <option value="no" selected="Yes">No</option>
25 </param>
26 </conditional>
27 <conditional name="condition3">
28 <param name="tool_option3" type="select" label="Write output in bed format" help="Output to write IGV regions of interest">
29 <option value="yes" selected="No">Yes</option>
30 <option value="no" selected="Yes">No</option>
31 </param>
32 </conditional>
33 </inputs>
34 <outputs>
35 <data format="sam" name="output1" />
36 <data format="txt" name="output2" label="Samifier log file">
37 <filter>condition2['tool_option2'] == "yes"</filter>
38 </data>
39 <data format="bed" name="output3" label="Samifier Bed">
40 <filter>condition3['tool_option3'] == "yes"</filter>
41 </data>
42 </outputs>
43 <help>
44 </help>
45 </tool>