Mercurial > repos > iuc > khmer
view count-median.xml @ 0:0187f18785a3 draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-iuc/blob/master/tools/khmer/ commit 37727831a2630b7a7d4fb033366cbd772c3086c8
| author | iuc |
|---|---|
| date | Sat, 17 Oct 2015 04:02:33 -0400 |
| parents | |
| children |
line wrap: on
line source
<tool id="gedlab-khmer-count-median" name="Count Median" version="@WRAPPER_VERSION@-1"> <description>Count the median/avg k-mer abundance for each sequence in the input file</description> <macros> <token name="@BINARY@">count-median.py</token> <import>macros.xml</import> </macros> <expand macro="requirements" /> <expand macro="stdio" /> <expand macro="version" /> <command><![CDATA[ set -xu && @BINARY@ $input_countgraph_filename $input_sequence_filename $output_summary_filename ]]> </command> <inputs> <expand macro="input_sequence_filename" /> <expand macro="input_countgraph_filename" /> </inputs> <outputs> <data name="output_summary_filename" format="txt" label="${input_sequence_filename} sequence id, median, average, stddev, and seq length" /> </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" /> <output name="output_summary_filename"> <assert_contents> <has_text text="seq,1001,1001.0,0.0,18" /> <has_text text="895:1:37:17593:9954/1,1,21.408163071,141.391921997,114" /> </assert_contents> </output> </test> </tests> <help><![CDATA[ Count the median/avg k-mer abundance for each sequence in the input file, based on the k-mer counts in the given k-mer countgraph. Can be used to estimate expression levels (mRNAseq) or coverage (genomic/metagenomic). The output file contains sequence id, median, average, stddev, and seq length; fields are separated by spaces. For khmer 1.x count-median.py will split sequence names at the first space which means that some sequence formats (e.g. paired FASTQ in Casava 1.8 format) will yield uninformative names. Use `--csv` to fix this behavior. @HELP_FOOTER@ ]]> </help> <citations> <expand macro="software-citation" /> <expand macro="diginorm-citation" /> </citations> </tool>
