Mercurial > repos > iuc > khmer_extract_partitions
changeset 9:1061711538c6 draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/khmer commit 238d0992c63de53623c4fc05eec8bd8d67001997
author | iuc |
---|---|
date | Thu, 03 Oct 2024 13:46:53 +0000 |
parents | adb3dd5a899f |
children | |
files | extract-partitions.xml macros.xml |
diffstat | 2 files changed, 20 insertions(+), 13 deletions(-) [+] |
line wrap: on
line diff
--- a/extract-partitions.xml Mon Jun 17 11:46:55 2024 +0000 +++ b/extract-partitions.xml Thu Oct 03 13:46:53 2024 +0000 @@ -1,10 +1,10 @@ <tool id="khmer_extract_partitions" name="khmer: Extract partitions" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@"> <description>Separate sequences that are annotated with partitions into grouped files</description> - <expand macro="bio_tools"/> <macros> <token name="@BINARY@">extract-partitions.py</token> <import>macros.xml</import> </macros> + <expand macro="bio_tools"/> <expand macro="requirements" /> <expand macro="stdio" /> <expand macro="version" /> @@ -31,15 +31,20 @@ label="Output unassigned sequences" help="(--output-unassigned/-U)" /> </inputs> <outputs> - <data name="distribution" format="txt" from_work_dir="output.dist" label="${tool.name} on ${on_string}: Partition size distribution" /> - <collection name="groups-of-partitions" type="list" format="fasta"> + <data name="distribution" format="txt" from_work_dir="output/output.dist" label="${tool.name} on ${on_string}: Partition size distribution" /> + <collection name="groups_of_partitions" type="list" format="fasta"> <discover_datasets pattern="__name__" directory="output" format="fasta"/> </collection> </outputs> <tests> <test> <param name="inputs" value="random-20-a.fa.part"/> - <output_collection name="groups-of-partitions"> + <output name="distribution"> + <assert_contents> + <has_text text="99 1 1 99"/> + </assert_contents> + </output> + <output_collection name="groups_of_partitions"> <element name="output.group0000.fa" file="random-20-a.part.extract.fa" /> </output_collection> </test>
--- a/macros.xml Mon Jun 17 11:46:55 2024 +0000 +++ b/macros.xml Thu Oct 03 13:46:53 2024 +0000 @@ -1,6 +1,6 @@ <macros> <token name="@TOOL_VERSION@">3.0.0a3</token> - <token name="@VERSION_SUFFIX@">2</token> + <token name="@VERSION_SUFFIX@">3</token> <token name="@PROFILE@">20.01</token> <xml name="bio_tools"> <xrefs> @@ -34,7 +34,7 @@ #end if ]]> </token> - <token name="@THREADS@">--threads \${GALAXY_SLOTS:-4}</token> + <token name="@THREADS@">--threads "\${GALAXY_SLOTS:-4}"</token> <xml name="tableinputs"> <conditional name="parameters"> <param name="type" type="select" label="Advanced Parameters" @@ -43,7 +43,7 @@ <option value="specific">Show</option> </param> <when value="simple"> - <param argument="" name="tablesize" type="select" label="Sample Type" display="radio"> + <param argument="--max-tablesize" name="tablesize" type="select" label="Sample Type" display="radio"> <option value="1e9" selected="true">Microbial Genome</option> <option value="2e9">Animal Transcriptome</option> <option value="4e9">Small Animal Genome or Low-Diversity Metagenome</option> @@ -51,8 +51,8 @@ </param> </when> <when value="specific"> - <param argument="--ksize" name="ksize" type="integer" value="20" label="k-mer size" help="k-mer size to use" /> - <param argument="--n_tables" name="n_tables" type="integer" min="1" value="4" label="n_tables" help="number of tables to use" /> + <param argument="--ksize" type="integer" value="20" label="k-mer size" help="k-mer size to use" /> + <param argument="--n_tables" type="integer" min="1" value="4" label="n_tables" help="number of tables to use" /> <param argument="--max-tablesize" name="tablesize_specific" type="text" value="1000000.0" label="tablesize" help="(--max-tablesize) upper bound on the tablesize to use" /> </when> @@ -90,11 +90,13 @@ help="The abundances of the k-mers in the input nucleotide sequence file will be calculated using the kmer counts in this k-mer countgraph." /> </xml> <xml name="abundance-histogram-output"> - <data name="output_histogram_filename" format="txt" - label="${tool.name} on ${on_string}: k-mer abundance histogram. The - columns are: (1) k-mer abundance, (2) k-mer count, (3) - cumulative count, (4) fraction of total distinct k-mers." /> + <data name="output_histogram_filename" format="csv" + label="${tool.name} on ${on_string}: k-mer abundance histogram" /> </xml> + <token name="@ABUNDANCE_HISTOGRAM_OUTPUT_HELP@"><![CDATA[ + The columns of the k-mer abundance histogram are: (1) k-mer abundance, (2) k-mer count, (3) cumulative count, (4) fraction of total distinct k-mers. +]]></token> + <xml name="output_sequences" token_extension=""> <collection name="sequences" type="list"> <discover_datasets pattern="(?P<name>.*)\.(?P<ext>fast[aq](\.gz)?)\.@EXTENSION@" directory="output" />