Mercurial > repos > iuc > stacks_ustacks
comparison stacks_ustacks.xml @ 12:4cce81af50a8 draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stacks commit 74ee33c6e30744a6da8deb7116d431d80ee80edb
author | iuc |
---|---|
date | Fri, 07 Apr 2023 22:04:41 +0000 |
parents | a4ec4f620a77 |
children |
comparison
equal
deleted
inserted
replaced
11:a4ec4f620a77 | 12:4cce81af50a8 |
---|---|
1 <tool id="stacks_ustacks" name="Stacks: ustacks" version="@WRAPPER_VERSION@.0"> | 1 <tool id="stacks_ustacks" name="Stacks: ustacks" version="@WRAPPER_VERSION@.0"> |
2 <description>align short reads into stacks</description> | 2 <description>align short reads into stacks</description> |
3 <expand macro="bio_tools"/> | |
4 <macros> | 3 <macros> |
5 <import>macros.xml</import> | 4 <import>macros.xml</import> |
6 </macros> | 5 </macros> |
6 <expand macro="bio_tools"/> | |
7 <expand macro="requirements"/> | 7 <expand macro="requirements"/> |
8 <expand macro="stdio"/> | 8 <expand macro="stdio"/> |
9 <command><![CDATA[ | 9 <command><![CDATA[ |
10 | 10 |
11 @CLEAN_EXT@ | 11 @CLEAN_EXT@ |
88 ]]></command> | 88 ]]></command> |
89 | 89 |
90 <inputs> | 90 <inputs> |
91 <param name="sample" argument="-f" format="fastqsanger,fastqsanger.gz,fasta" type="data" label="Input short reads from an individual" /> | 91 <param name="sample" argument="-f" format="fastqsanger,fastqsanger.gz,fasta" type="data" label="Input short reads from an individual" /> |
92 | 92 |
93 <param name="m" argument="-m" type="integer" value="2" label="Minimum depth of coverage required to create a stack"/> | 93 <param argument="-m" type="integer" value="2" label="Minimum depth of coverage required to create a stack"/> |
94 <param name="M" argument="-M" type="integer" value="2" label="Maximum distance (in nucleotides) allowed between stacks"/> | 94 <param argument="-M" type="integer" value="2" label="Maximum distance (in nucleotides) allowed between stacks"/> |
95 <param name="R" argument="-R" type="boolean" checked="false" truevalue="-R" falsevalue="" label="Retain unused reads" /> | 95 <param argument="-R" type="boolean" checked="false" truevalue="-R" falsevalue="" label="Retain unused reads" /> |
96 <param name="H" argument="-H" type="boolean" checked="false" truevalue="-H" falsevalue="" label="Disable calling haplotypes from secondary reads" /> | 96 <param argument="-H" type="boolean" checked="false" truevalue="-H" falsevalue="" label="Disable calling haplotypes from secondary reads" /> |
97 | 97 |
98 <section name="assembly_options" title="SNP Model Options (ustacks options)" expanded="True"> | 98 <section name="assembly_options" title="SNP Model Options (ustacks options)" expanded="True"> |
99 <param name="keep_high_cov" argument="--keep_high_cov" type="boolean" checked="false" truevalue="--keep-high-cov" falsevalue="" label="Disable the algorithm that removes highly-repetitive stacks and nearby errors. " /> | 99 <param argument="--keep_high_cov" type="boolean" checked="false" truevalue="--keep-high-cov" falsevalue="" label="Disable the algorithm that removes highly-repetitive stacks and nearby errors. " /> |
100 <param name="d" argument="-d" type="boolean" checked="false" truevalue="-d" falsevalue="" label="Enable the Deleveraging algorithm, used for resolving over merged tags" /> | 100 <param argument="-d" type="boolean" checked="false" truevalue="-d" falsevalue="" label="Enable the Deleveraging algorithm, used for resolving over merged tags" /> |
101 <param name="max_locus_stacks" argument="--max_locus_stacks" type="integer" value="3" label="Maximum number of stacks at a single de novo locus"/> | 101 <param argument="--max_locus_stacks" type="integer" value="3" label="Maximum number of stacks at a single de novo locus"/> |
102 <param name="k_len" argument="--k_len" type="integer" value="" optional="true" label="K-mer size for matching between alleles and loci (automatically calculated by default)"/> | 102 <param argument="--k_len" type="integer" value="" optional="true" label="K-mer size for matching between alleles and loci (automatically calculated by default)"/> |
103 </section> | 103 </section> |
104 | 104 |
105 <conditional name="gapped"> | 105 <conditional name="gapped"> |
106 <param name="use_gapped" argument="--gapped" type="select" label="Perform gapped alignments between stacks"> | 106 <param name="use_gapped" argument="--gapped" type="select" label="Perform gapped alignments between stacks"> |
107 <option value="no" selected="true">No</option> | 107 <option value="no" selected="true">No</option> |
108 <option value="yes">Yes</option> | 108 <option value="yes">Yes</option> |
109 </param> | 109 </param> |
110 <when value="no"/> | 110 <when value="no"/> |
111 <when value="yes"> | 111 <when value="yes"> |
112 <param name="max_gaps" argument="--max_gaps" type="integer" value="2" label="Number of gaps allowed between stacks before merging"/> | 112 <param argument="--max_gaps" type="integer" value="2" label="Number of gaps allowed between stacks before merging"/> |
113 <param name="min_aln_len" argument="--min_aln_len" type="float" value="0.8" min="0.0" max="1.0" label="Minimum length of aligned sequence in a gapped alignment"/> | 113 <param argument="--min_aln_len" type="float" value="0.8" min="0.0" max="1.0" label="Minimum length of aligned sequence in a gapped alignment"/> |
114 </when> | 114 </when> |
115 </conditional> | 115 </conditional> |
116 | 116 |
117 <!-- SNP Model options --> | 117 <!-- SNP Model options --> |
118 <section name="snp_options" title="SNP Model Options (ustacks options)" expanded="False"> | 118 <section name="snp_options" title="SNP Model Options (ustacks options)" expanded="False"> |