comparison count-median.xml @ 10:570505540a7b 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:47:04 +0000
parents b3d513c7093e
children
comparison
equal deleted inserted replaced
9:b3d513c7093e 10:570505540a7b
1 <tool id="khmer_count_median" name="khmer: Count Median" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@"> 1 <tool id="khmer_count_median" name="khmer: Count Median" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@">
2 <description>Count the median/avg k-mer abundance for each sequence</description> 2 <description>Count the median/avg k-mer abundance for each sequence</description>
3 <expand macro="bio_tools"/>
4 <macros> 3 <macros>
5 <token name="@BINARY@">count-median.py</token> 4 <token name="@BINARY@">count-median.py</token>
6 <import>macros.xml</import> 5 <import>macros.xml</import>
7 </macros> 6 </macros>
7 <expand macro="bio_tools"/>
8 <expand macro="requirements" /> 8 <expand macro="requirements" />
9 <expand macro="stdio" /> 9 <expand macro="stdio" />
10 <expand macro="version" /> 10 <expand macro="version" />
11 <command><![CDATA[ 11 <command><![CDATA[
12 set -u && 12 set -u &&
19 <inputs> 19 <inputs>
20 <expand macro="input_sequence_filename" /> 20 <expand macro="input_sequence_filename" />
21 <expand macro="input_countgraph_filename" /> 21 <expand macro="input_countgraph_filename" />
22 </inputs> 22 </inputs>
23 <outputs> 23 <outputs>
24 <data name="output_summary_filename" format="txt" 24 <data name="output_summary_filename" format="csv"
25 label="${tool.name} on ${on_string}" /> 25 label="${tool.name} on ${on_string}" />
26 </outputs> 26 </outputs>
27 <tests> 27 <tests>
28 <test> 28 <test>
29 <param name="input_sequence_filename" value="test-abund-read-2.fa" /> 29 <param name="input_sequence_filename" value="test-abund-read-2.fa" />
38 </tests> 38 </tests>
39 <help><![CDATA[ 39 <help><![CDATA[
40 Count the median/avg k-mer abundance for each sequence in the input file, 40 Count the median/avg k-mer abundance for each sequence in the input file,
41 based on the k-mer counts in the given k-mer countgraph. Can be used to 41 based on the k-mer counts in the given k-mer countgraph. Can be used to
42 estimate expression levels (mRNAseq) or coverage (genomic/metagenomic). The 42 estimate expression levels (mRNAseq) or coverage (genomic/metagenomic). The
43 output file contains sequence id, median, average, stddev, and seq length; 43 output file contains sequence id, median, average, stddev, and seq length.
44 fields are separated by spaces. For khmer 1.x count-median.py will split 44 For khmer 1.x count-median.py will split
45 sequence names at the first space which means that some sequence formats (e.g. 45 sequence names at the first space which means that some sequence formats (e.g.
46 paired FASTQ in Casava 1.8 format) will yield uninformative names. Use 46 paired FASTQ in Casava 1.8 format) will yield uninformative names. Use
47 `--csv` to fix this behavior. 47 `--csv` to fix this behavior.
48 48
49 @HELP_FOOTER@ 49 @HELP_FOOTER@