0
|
1 <tool id="call_amr_mutations" name="PIMA: call AMR mutations" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@">
|
|
2 <description></description>
|
|
3 <macros>
|
|
4 <import>macros.xml</import>
|
|
5 </macros>
|
|
6 <expand macro="requirements"/>
|
|
7 <command detect_errors="exit_code"><![CDATA[
|
3
|
8 ## NOTE: This tool provides the functionality of the PIMA filter_varsacn()
|
|
9 ## function here https://github.com/appliedbinf/pima_md/blob/main/pima.py#L3012
|
0
|
10
|
3
|
11 python '$__tool_directory__/filter_varscan.py'
|
|
12 --varscan_raw '$varscan_raw'
|
|
13 --output '$output'
|
0
|
14 ]]></command>
|
|
15 <inputs>
|
|
16 <param name="varscan_raw" type="data" format="vcf" label="Raw varscan VCF file"/>
|
|
17 </inputs>
|
|
18 <outputs>
|
3
|
19 <data name="output" format="vcf"/>
|
0
|
20 </outputs>
|
|
21 <tests>
|
|
22 <test>
|
3
|
23 <param name="varscan_raw" value="input.vcf" ftype="vcf"/>
|
|
24 <output name="output" value="output.vcf" ftype="vcf"/>
|
0
|
25 </test>
|
|
26 </tests>
|
|
27 <help>
|
|
28 **What it does**
|
|
29
|
3
|
30 Accepts VarScan mpileup2snps VCF file, filters it, and produces a filtered VCF file.
|
0
|
31 </help>
|
|
32 <expand macro="citations"/>
|
|
33 </tool>
|