Mercurial > repos > iuc > bbtools_callvariants
comparison callvariants.xml @ 10:7e041c120b96 draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bbtools commit cd59ba2c349865259b92302a1d70e103b8a5e3cb
author | iuc |
---|---|
date | Tue, 27 Aug 2024 10:14:45 +0000 |
parents | 66b138a2e74c |
children |
comparison
equal
deleted
inserted
replaced
9:66b138a2e74c | 10:7e041c120b96 |
---|---|
37 #end if | 37 #end if |
38 ]]></command> | 38 ]]></command> |
39 <inputs> | 39 <inputs> |
40 <param name="input" type="data" format="bam" label="Bam file" help="Bam files produced by BBMap are recommended"/> | 40 <param name="input" type="data" format="bam" label="Bam file" help="Bam files produced by BBMap are recommended"/> |
41 <expand macro="reference_source_cond"/> | 41 <expand macro="reference_source_cond"/> |
42 <param name="ploidy" type="integer" value="1" min="1" label="Ploidy" help="See help section below"/> | 42 <param name="ploidy" type="integer" min="1" value="1" label="Ploidy" help="See help section below"/> |
43 <param name="output_format" type="select" label="Select output format"> | 43 <param name="output_format" type="select" label="Select output format"> |
44 <option value="vcf" selected="true">vcf</option> | 44 <option value="vcf" selected="true">vcf</option> |
45 <option value="gff">gff</option> | 45 <option value="gff">gff</option> |
46 <option value="txt">txt</option> | 46 <option value="txt">txt</option> |
47 </param> | 47 </param> |
71 <param name="input" value="cv_input.bam" ftype="bam"/> | 71 <param name="input" value="cv_input.bam" ftype="bam"/> |
72 <param name="ploidy" value="2"/> | 72 <param name="ploidy" value="2"/> |
73 <param name="output_variant_score_hist" value="yes"/> | 73 <param name="output_variant_score_hist" value="yes"/> |
74 <param name="output_zygosity_hist" value="yes"/> | 74 <param name="output_zygosity_hist" value="yes"/> |
75 <param name="output_quality_hist" value="yes"/> | 75 <param name="output_quality_hist" value="yes"/> |
76 <output name="output" file="cv_output.vcf" ftype="vcf" compare="contains"/> | 76 <output name="output" file="cv_output.vcf" ftype="vcf" compare="diff" lines_diff="4"/> |
77 <output name="output_scorehist" file="cv_scorehist_output.tabular" ftype="tabular" compare="contains"/> | 77 <output name="output_scorehist" file="cv_scorehist_output.tabular" ftype="tabular" compare="contains"/> |
78 <output name="output_zygosityhist" file="cv_zygosityhist_output.tabular" ftype="tabular" compare="contains"/> | 78 <output name="output_zygosityhist" file="cv_zygosityhist_output.tabular" ftype="tabular" compare="contains"/> |
79 <output name="output_qualityhist" file="cv_qualityhist_output.tabular" ftype="tabular" compare="contains"/> | 79 <output name="output_qualityhist" file="cv_qualityhist_output.tabular" ftype="tabular" compare="contains"/> |
80 </test> | 80 </test> |
81 <test expect_num_outputs="1"> | 81 <test expect_num_outputs="1"> |
82 <param name="input" value="cv_input.bam" ftype="bam"/> | 82 <param name="input" value="cv_input.bam" ftype="bam"/> |
83 <param name="ploidy" value="2"/> | 83 <param name="ploidy" value="2"/> |
84 <param name="output_format" value="gff"/> | 84 <param name="output_format" value="gff"/> |
85 <output name="output" file="cv_output.gff" ftype="gff" compare="contains"/> | 85 <output name="output" file="cv_output.gff" ftype="gff" compare="contains" lines_diff="2"/> |
86 </test> | 86 </test> |
87 <test expect_num_outputs="1"> | 87 <test expect_num_outputs="1"> |
88 <param name="input" value="cv_input.bam" ftype="bam"/> | 88 <param name="input" value="cv_input.bam" ftype="bam"/> |
89 <param name="ploidy" value="2"/> | 89 <param name="ploidy" value="2"/> |
90 <param name="output_format" value="txt"/> | 90 <param name="output_format" value="txt"/> |
91 <output name="output" file="cv_output.txt" ftype="txt" compare="contains"/> | 91 <output name="output" file="cv_output.txt" ftype="txt" compare="contains" lines_diff="2"/> |
92 </test> | 92 </test> |
93 </tests> | 93 </tests> |
94 <help> | 94 <help> |
95 **What it does** | 95 **What it does** |
96 | 96 |
106 * **Ploidy** - Arbitrary ploidy is supported - the default is 1 which works for haploid organisms. Allele fractions lower than those expected for the ploidy (for example, anything below 0.5 for a diploid, or 0.25 for a tetraploid) will incur a score penalty. When calling variants on non-haploid organisms, it is crucial to set the ploidy. | 106 * **Ploidy** - Arbitrary ploidy is supported - the default is 1 which works for haploid organisms. Allele fractions lower than those expected for the ploidy (for example, anything below 0.5 for a diploid, or 0.25 for a tetraploid) will incur a score penalty. When calling variants on non-haploid organisms, it is crucial to set the ploidy. |
107 | 107 |
108 </help> | 108 </help> |
109 <expand macro="citations"/> | 109 <expand macro="citations"/> |
110 </tool> | 110 </tool> |
111 |