4
|
1 <tool id="phe_samtools_mpileup" name="PHE MPileup" version="1.0">
|
|
2 <description>PHE SNP and indel caller</description>
|
|
3 <requirements>
|
|
4 <requirement type="package" version="1.1">samtools</requirement>
|
8
|
5 <requirement type="package" version="1.3">bcftools</requirement>
|
4
|
6 </requirements>
|
11
|
7 <stdio>
|
|
8 <!-- Assume anything other than zero is an error -->
|
|
9 <exit_code range="1:" />
|
|
10 <exit_code range=":-1" />
|
|
11 </stdio>
|
4
|
12 <command interpreter="bash">
|
|
13 phe_samtools_mpileup.sh $input_bam $ref_file $outvcf
|
|
14 </command>
|
|
15 <inputs>
|
|
16 <param name="input_bam" type="data" format="bam" label="BAM file" />
|
|
17 <param name="ref_file" type="data" format="fasta" label="Using reference file" />
|
|
18 </inputs>
|
|
19 <outputs>
|
|
20 <data format="vcf" name="outvcf" label="${tool.name} on ${on_string} VCF" />
|
|
21 </outputs>
|
|
22 <tests>
|
|
23 <test>
|
|
24 <param name="input_bam" value="in_short.bam" ftype="bam" />
|
|
25 <param name="ref_file" value="ref.fa" ftype="fasta" />
|
|
26 <output name="outvcf" file="out.vcf" ftype="vcf" />
|
|
27 </test>
|
|
28 </tests>
|
|
29 <help>
|
|
30
|
|
31 **Citation**
|
|
32
|
|
33 For the underlying tool, please cite `Li H, Handsaker B, Wysoker A, Fennell T, Ruan J, Homer N, Marth G, Abecasis G, Durbin R; 1000 Genome Project Data Processing Subgroup. The Sequence Alignment/Map format and SAMtools. Bioinformatics. 2009 Aug 15;25(16):2078-9. <http://www.ncbi.nlm.nih.gov/pubmed/19505943>`_
|
|
34
|
|
35 If you use this tool in Galaxy, please cite Blankenberg D, et al. *In preparation.*
|
|
36
|
|
37 </help>
|
|
38 </tool>
|