Mercurial > repos > iuc > trinity_contig_exn50_statistic
view contig_exn50_statistic.xml @ 16:870ac06dff8e draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/trinity commit c6eab3b60743dfa415dc135d657267cc8a0a31ce
author | iuc |
---|---|
date | Tue, 08 Aug 2023 09:08:40 +0000 |
parents | 41db7569b4ba |
children |
line wrap: on
line source
<tool id="trinity_contig_exn50_statistic" name="Compute contig Ex90N50 statistic and Ex90 transcript count" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="21.05"> <description>from a Trinity assembly</description> <macros> <import>macros.xml</import> </macros> <expand macro="bio_tools"/> <expand macro="requirements" /> <command detect_errors="aggressive"><![CDATA[ ln -s '$matrix' 'matrix.tabular' && contig_ExN50_statistic.pl 'matrix.tabular' '$transcripts' > '$output' ]]></command> <inputs> <param name="matrix" type="data" format="tabular" label="Expression matrix" help="Matrix of normalized expression values produced by 'Build expression matrix for a de novo assembly of RNA-Seq data by Trinity' tool"/> <param name="transcripts" type="data" format="fasta" label="Transcripts" help="De novo assembly of RNA-Seq data"/> </inputs> <outputs> <data format="tabular" name="output" label="${tool.name} on ${on_string}: ExN50 statistics"/> </outputs> <tests> <test> <param name="matrix" value="count/contig_exn50_statistic/matrix.TMM.EXPR.matrix"/> <param name="transcripts" value="count/contig_exn50_statistic/Trinity.fasta"/> <output name="output" file="count/contig_exn50_statistic/ExN50.stats"/> </test> </tests> <help> <![CDATA[ Trinity_ assembles transcript sequences from Illumina RNA-Seq data. This tool computes the N50 statistic limited to the top most highly expressed transcripts that represent x% of the total normalized expression data. This requires that you have first performed transcript abundance estimation with 'Align reads and estimate abundance for a de novo assembly of RNA-Seq data by Trinity' tool and that you have built the expression matrix with 'Build expression matrix for a de novo assembly of RNA-Seq data by Trinity' tool. **Inputs** It takes as input a transcriptome assembled with Trinity and the matrix of normalized expression values produced by 'Build expression matrix for a de novo assembly of RNA-Seq data by Trinity' tool. .. _Trinity: https://github.com/trinityrnaseq/trinityrnaseq/wiki ]]> </help> <expand macro="citation" /> </tool>