Mercurial > repos > devteam > fastx_nucleotides_distribution
view fastx_nucleotides_distribution.xml @ 6:09fc1eee76d2 draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tool_collections/fastx_toolkit/fastx_nucleotides_distribution commit 17bcf78f445b2e515122330caccb591d8de2a5b4
author | iuc |
---|---|
date | Wed, 23 Apr 2025 05:18:42 +0000 |
parents | 847bd785fc34 |
children |
line wrap: on
line source
<tool id="cshl_fastx_nucleotides_distribution" version="1.0.1+galaxy@VERSION_SUFFIX@" profile="22.05" name="Draw nucleotides distribution chart"> <description></description> <macros> <import>macros.xml</import> </macros> <expand macro="requirements" /> <command detect_errors="exit_code"><![CDATA[ fastx_nucleotide_distribution_graph.sh -t '$input.name' -i '$input' -o '$output' ]]></command> <inputs> <param name="input" type="data" format="txt" label="Statistics text file" help="Output of 'FASTX Statistics' tool" /> </inputs> <outputs> <data name="output" format="png" metadata_source="input" /> </outputs> <tests> <test> <param name="input" value="fastx_nucleotides_distribution-in1.txt" /> <output name="output" file="fastx_nucleotides_distribution-out1.png" compare="sim_size" delta="4000" /> </test> </tests> <help><![CDATA[ **What it does** Creates a stacked-histogram graph for the nucleotide distribution in the Solexa library. .. class:: infomark **TIP:** Use the **FASTQ Statistics** tool to generate the report file needed for this tool. ----- **Output Examples** The following chart clearly shows the barcode used at the 5'-end of the library: **GATCT** .. image:: fastq_nucleotides_distribution_1.png In the following chart, one can almost 'read' the most abundant sequence by looking at the dominant values: **TGATA TCGTA TTGAT GACTG AA...** .. image:: fastq_nucleotides_distribution_2.png The following chart shows a growing number of unknown (N) nucleotides towards later cycles (which might indicate a sequencing problem): .. image:: fastq_nucleotides_distribution_3.png But most of the time, the chart will look rather random: .. image:: fastq_nucleotides_distribution_4.png ]]></help> <expand macro="citations" /> <!-- FASTQ-Nucleotides-Distribution is part of the FASTX-toolkit, by A.Gordon (gordon@cshl.edu) --> </tool>