0
|
1 <tool id="samifier" name="Samifier" version="1.0.1">
|
|
2 <description>Samifier vX.X</description>
|
|
3 <command interpreter="bash">
|
|
4 samifier.sh samifier.jar $chromosome_tar -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="chromosome_tar" type="data" format="tar" label="Select chromosome zip files" help="A zip file containing all the chromosome files" />
|
|
17 <param name="genome" type="data" format="gff" label="Select genome file" help="Genome file in gff format" />
|
|
18 <param name="mascot" type="data" format="txt" label="Select Mascot search result" help="Mascot search results file in txt format" />
|
|
19 <param name="mapping" type="data" format="txt" label="Select file mapping" help="File mapping protein identifier to ordered locus name" />
|
|
20 <param name="score_thresold" type="integer" label="Confidence Score thresold" help="Minimum confidence score for peptides to" optional="true"/>
|
|
21
|
|
22 <conditional name="condition2">
|
|
23 <param name="tool_option2" type="select" label="Write log file" help="Create an output containing the logs">
|
|
24 <option value="yes" selected="No">Yes</option>
|
|
25 <option value="no" selected="Yes">No</option>
|
|
26 </param>
|
|
27 </conditional>
|
|
28 <conditional name="condition3">
|
|
29 <param name="tool_option3" type="select" label="Write output in bed format" help="Output to write IGV regions of interest">
|
|
30 <option value="yes" selected="No">Yes</option>
|
|
31 <option value="no" selected="Yes">No</option>
|
|
32 </param>
|
|
33 </conditional>
|
|
34 </inputs>
|
|
35 <outputs>
|
|
36 <data format="sam" name="output1" />
|
|
37 <data format="txt" name="output2" label="Samifier log file">
|
|
38 <filter>condition2['tool_option2'] == "yes"</filter>
|
|
39 </data>
|
|
40 <data format="bed" name="output3" label="Samifier Bed">
|
|
41 <filter>condition3['tool_option3'] == "yes"</filter>
|
|
42 </data>
|
|
43 </outputs>
|
|
44 <help>
|
|
45 </help>
|
|
46 </tool>
|