Mercurial > repos > dave > lofreq_alnqual
comparison lofreq_alnqual.xml @ 0:d1b53ef02092 draft default tip
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/lofreq commit b8b08e76ebdca1fceef0da1b377eb4b6d45b0847-dirty"
author | dave |
---|---|
date | Wed, 27 Nov 2019 15:24:44 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:d1b53ef02092 |
---|---|
1 <tool id="lofreq_alnqual" name="Add BAQ and IDAQ" version="@WRAPPER_VERSION@0"> | |
2 <description>to BAM with LoFreq</description> | |
3 <macros> | |
4 <import>macros.xml</import> | |
5 </macros> | |
6 <expand macro="requirements" /> | |
7 <command detect_errors="exit_code"><![CDATA[ | |
8 @PREPARE_REF@ | |
9 lofreq alnqual -b $extended $no_baq $no_idaq $recompute_all '$reads' '$reference_fasta_fn' > '$output' | |
10 ]]></command> | |
11 <inputs> | |
12 <param type="data" name="reads" format="bam" /> | |
13 <expand macro="reference_interface" /> | |
14 <param name="extended" argument="-e" type="boolean" truevalue="-e" falsevalue="" label="Use default instead of extended BAQ" help="Extended BAQ gives better sensitivity with lower specificity" /> | |
15 <param name="no_baq" argument="-B" type="boolean" truevalue="-B" falsevalue="" label="Skip base alignment quality calculation" /> | |
16 <param name="no_idaq" argument="-A" type="boolean" truevalue="-A" falsevalue="" label="Skip indel alignment quality calculation" /> | |
17 <param name="recompute_all" argument="-r" type="boolean" truevalue="-r" falsevalue="" label="Overwrite existing values with computed values" /> | |
18 </inputs> | |
19 <outputs> | |
20 <data name="output" format="bam" label="${tool.name} to ${on_string}" /> | |
21 </outputs> | |
22 <tests> | |
23 <test> | |
24 <param name="reads" ftype="bam" value="lofreq-in1.bam" /> | |
25 <param name="ref_selector" value="history" /> | |
26 <param name="ref" ftype="fasta" value="pBR322.fa" /> | |
27 <output name="output" file="alnqual-out1.bam" /> | |
28 </test> | |
29 <test> | |
30 <param name="reads" ftype="bam" value="lofreq-in1.bam" /> | |
31 <param name="ref_selector" value="history" /> | |
32 <param name="ref" ftype="fasta" value="pBR322.fa" /> | |
33 <param name="no_baq" value="true" /> | |
34 <output name="output" file="alnqual-out2.bam" /> | |
35 </test> | |
36 <test> | |
37 <param name="reads" ftype="bam" value="lofreq-in1.bam" /> | |
38 <param name="ref_selector" value="history" /> | |
39 <param name="ref" ftype="fasta" value="pBR322.fa" /> | |
40 <param name="no_idaq" value="true" /> | |
41 <output name="output" file="alnqual-out3.bam" /> | |
42 </test> | |
43 <test> | |
44 <param name="reads" ftype="bam" value="lofreq-in1.bam" /> | |
45 <param name="ref_selector" value="history" /> | |
46 <param name="ref" ftype="fasta" value="pBR322.fa" /> | |
47 <param name="extended" value="true" /> | |
48 <output name="output" file="alnqual-out4.bam" /> | |
49 </test> | |
50 <test> | |
51 <param name="reads" ftype="bam" value="lofreq-in1.bam" /> | |
52 <param name="ref_selector" value="history" /> | |
53 <param name="ref" ftype="fasta" value="pBR322.fa" /> | |
54 <param name="recompute" value="true" /> | |
55 <output name="output" file="alnqual-out5.bam" /> | |
56 </test> | |
57 </tests> | |
58 <help><![CDATA[ | |
59 lofreq alnqual: add base- and indel-alignment qualities (BAQ, IDAQ) to BAM file | |
60 | |
61 Usage: lofreq alnqual [options] <aln.bam> <ref.fasta> | |
62 Options: | |
63 -b BAM output (instead of SAM) | |
64 -u Uncompressed BAM output (for piping) | |
65 -S The input is SAM with header | |
66 -e Use default instead of extended BAQ (the latter gives better sensitivity but lower specificity) | |
67 -B Don't compute base alignment qualities | |
68 -A Don't compute indel alignment qualities | |
69 -r Recompute i.e. overwrite existing values | |
70 - Output BAM will be written to stdout. | |
71 - Only reads containing indels will contain indel-alignment qualities (tags: ai and ad). | |
72 - Do not change the alignmnent after running this, i.e. use this as last postprocessing step! | |
73 - This program is based on samtools. BAQ was introduced by Heng Li PMID:21320865 | |
74 | |
75 | |
76 ]]></help> | |
77 <expand macro="citations" /> | |
78 </tool> |