Mercurial > repos > iuc > khmer_abundance_distribution
view abundance-dist.xml @ 10:e699e2747356 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:45:57 +0000 |
parents | 7624945cacd3 |
children |
line wrap: on
line source
<tool id="khmer_abundance_distribution" name="khmer: Abundance Distribution" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@"> <description> Calculate abundance distribution of k-mers using pre-made k-mer countgraphs </description> <macros> <token name="@BINARY@">abundance-dist.py</token> <import>macros.xml</import> </macros> <expand macro="bio_tools"/> <expand macro="requirements" /> <expand macro="stdio" /> <expand macro="version" /> <command><![CDATA[ set -u && @BINARY@ --squash ${zero} ${bigcount} ${input_countgraph_filename} ${input_sequence_filename} ${output_histogram_filename} ]]> </command> <inputs> <expand macro="input_countgraph_filename" /> <expand macro="input_sequence_filename" /> <expand macro="input_zero" /> <expand macro="input_bigcount" /> </inputs> <outputs> <expand macro="abundance-histogram-output" /> </outputs> <tests> <test> <param name="input_sequence_filename" value="test-abund-read-2.fa" /> <param name="input_countgraph_filename" value="test-abund-read-2.oxlicg" ftype="oxlicg" /> <param name="zero" value="false" /> <output name="output_histogram_filename"> <assert_contents> <has_text text="1,96,96,0.98" /> <has_text text="1001,2,98,1.0" /> </assert_contents> </output> </test> <test> <param name="input_sequence_filename" value="test-abund-read-2.fa.gz" /> <param name="input_countgraph_filename" value="test-abund-read-2.oxlicg" ftype="oxlicg" /> <param name="zero" value="false" /> <param name="bigcount" value="false" /> <output name="output_histogram_filename"> <assert_contents> <has_text text="1,96,96,0.98" /> <has_text text="255,2,98,1.0" /> </assert_contents> </output> </test> </tests> <help><![CDATA[ Calculate abundance distribution of the k-mers in the sequence file using a pre-made k-mer countgraph. @ABUNDANCE_HISTOGRAM_OUTPUT_HELP@ @HELP_FOOTER@ ]]> </help> <citations> <expand macro="software-citation" /> <expand macro="counting-citation" /> </citations> </tool>