10
|
1 <tool id="PileupVariant" name="PileupVariant" version="1.10">
|
0
|
2 <description>Keep only mpileup line with variant</description>
|
|
3 <command interpreter="perl">
|
10
|
4 #if $exclude.do=="YES"
|
|
5 PileupVariant.pl -input_pileup_file $input_pileup_file -input_exclusion_file $input_exclusion_file -log_file $log_file > $output_pileup_file
|
|
6 #else
|
|
7 PileupVariant.pl -input_pileup_file $input_pileup_file -log_file $log_file > $output_pileup_file
|
|
8 #end if
|
|
9
|
0
|
10 </command>
|
|
11 <inputs>
|
7
|
12 <param name="input_pileup_file" type="data" format="pileup" label="Select a suitable input file from your history"/>
|
10
|
13 <conditional name="exclude">
|
|
14 <param name="do" type="select" label="Exclude some position">
|
|
15 <option value="NO">NO</option>
|
|
16 <option value="YES">YES</option>
|
|
17 </param>
|
|
18 <when value="YES">
|
|
19 <param name="input_exclusion_file" type="data" format="pileup" label="Select a suitable input file from your history"/>
|
|
20 </when>
|
|
21 <when value="NO">
|
|
22
|
|
23 </when>
|
|
24 </conditional>
|
0
|
25 </inputs>
|
|
26 <outputs>
|
7
|
27 <data name="output_pileup_file" format="pileup" label="${tool.name} on ${on_string}"/>
|
|
28 <data name="log_file" format="txt" label="${tool.name} LOG on ${on_string}"/>
|
0
|
29 </outputs>
|
|
30
|
|
31 <help>
|
|
32
|
|
33
|
|
34
|
|
35 </help>
|
|
36 </tool>
|