Mercurial > repos > devteam > fastq_quality_boxplot
view fastq_quality_boxplot.xml @ 4:439eed933bf9 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastq_quality_boxplot commit bbb2e6b6769b03602a8ab97001f88fbec52080a1
author | iuc |
---|---|
date | Tue, 08 May 2018 12:49:29 -0400 |
parents | cd82df766cab |
children | 5a28b303e432 |
line wrap: on
line source
<tool id="cshl_fastq_quality_boxplot" name="Draw quality score boxplot" version="1.0.1"> <description></description> <macros> <import>macros.xml</import> </macros> <expand macro="requirements" /> <command detect_errors="exit_code"><![CDATA[ #import re #set escaped_element_identifier = re.sub('[^\w\-\s]', '_', str($input.element_identifier)) fastq_quality_boxplot_graph.sh -t '$escaped_element_identifier' -i '$input' -o '$output' ]]></command> <inputs> <param name="input" type="data" format="txt" label="Statistics report file" help="output of 'FASTQ Statistics' tool" /> </inputs> <outputs> <data name="output" format="png" metadata_source="input" /> </outputs> <tests> <test> <param name="input" value="fastq_quality_boxplot-in1.fastq" /> <output name="output" file="fastq_quality_boxplot-out1.png" compare="sim_size" delta="768" /> </test> </tests> <help><![CDATA[ **What it does** Creates a boxplot graph for the quality scores in the library. .. class:: infomark **TIP:** Use the **FASTQ Statistics** tool to generate the report file needed for this tool. ----- **Output Examples** * Black horizontal lines are medians * Rectangular red boxes show the Inter-quartile Range (IQR) (top value is Q3, bottom value is Q1) * Whiskers show outlier at max. 1.5*IQR An excellent quality library (median quality is 40 for almost all 36 cycles): .. image:: fastq_quality_boxplot_1.png A relatively good quality library (median quality degrades towards later cycles): .. image:: fastq_quality_boxplot_2.png A low quality library (median drops quickly): .. image:: fastq_quality_boxplot_3.png ------ This tool is based on `FASTX-toolkit`__ by Assaf Gordon. .. __: http://hannonlab.cshl.edu/fastx_toolkit/ ]]></help> <expand macro="citations" /> <!-- FASTQ-Quality-Boxplot is part of the FASTX-toolkit, by A.Gordon (gordon@cshl.edu) --> </tool>