comparison rna_quast.xml @ 0:a0bd8ab14f66 draft

Uploaded
author lehmanju
date Mon, 12 Oct 2020 12:53:55 +0000
parents
children 7e130d325fa7
comparison
equal deleted inserted replaced
-1:000000000000 0:a0bd8ab14f66
1 <tool id="rna_quast" name="rnaQUAST" version="@TOOL_VERSION@" python_template_version="3.7">
2 <description>A Quality Assessment Tool for De Novo Transcriptome Assemblies</description>
3 <macros>
4 <token name="@TOOL_VERSION@">2.1.0</token>
5 </macros>
6 <requirements>
7 <requirement type="package" version="@TOOL_VERSION@">rnaquast</requirement>
8 </requirements>
9 <stdio>
10 <regex match="Traceback " source="both" level="fatal" description="rnaQuast failed" />
11 </stdio>
12 <command detect_errors="exit_code"><![CDATA[
13 #import re
14 #for $i in $input
15 ln -s '$i' '${re.sub('[^\w\-.]', '_', i.element_identifier)}' &&
16 #end for
17 #if $r
18 #for $rf in $r
19 ln -s '$rf' '${re.sub('[^\w\-.]', '_', rf.element_identifier)}' &&
20 #end for
21 #end if
22 #if $gene_coordinates.use_gtf == "true"
23 #for $g in $gene_coordinates.gtf
24 ln -s '$g' '${re.sub('[^\w\-.]', '_', g.element_identifier)}' &&
25 #end for
26 #end if
27 mkdir outputdir &&
28 rnaQUAST.py
29 --threads \${GALAXY_SLOTS:-1}
30 --transcripts
31 #for $i in $input
32 '${re.sub('[^\w\-.]', '_', i.element_identifier)}'
33 #end for
34 $strand_specific
35 #if $r
36 -r
37 #for $rf in $r
38 '${re.sub('[^\w\-.]', '_', rf.element_identifier)}'
39 #end for
40 #end if
41 #if $gene_coordinates.use_gtf == "true"
42 --gtf
43 #for $g in $gene_coordinates.gtf
44 '${re.sub('[^\w\-.]', '_', g.element_identifier)}'
45 #end for
46 $gene_coordinates.disable_infer_genes
47 $gene_coordinates.disable_infer_transcripts
48 #end if
49 $prokaryote
50 --min_alignment '$min_alignment'
51 #if "pdf" not in $out_sr and "plots" not in $out_add
52 --no_plots
53 #end if
54 $blat
55 $busco_lineage
56 $gene_mark
57 --lower_threshold $lower_threshold
58 --upper_threshold $upper_threshold
59 -o outputdir
60 && mkdir details
61 #for $i in $input
62 #set basename = os.path.splitext(re.sub('[^\w\-.]', '_', $i.element_identifier))[0]
63 &&
64 (for f in \$(find 'outputdir/'$basename'_output' -type f);
65 do
66 d=\$(dirname \$f | cut -d"/" -f2 | cut -d'_' -f1) &&
67 mv \$f details/"\$d"_____"\$(basename \$f)";
68 done)
69 #end for
70 ## rename .list files to .txt files to make them detectable (format detection by extension)
71 ## the final `true` seems needed since otherwise the `;` at the end is swallowed
72 && find details/ -name "*.list" -exec mv {} {}.txt \;
73 && true
74 ]]></command>
75 <inputs>
76 <param name="input" type="data" format="fasta" multiple="true" label="Chromosomes/scaffolds file"/>
77 <param name="strand_specific" argument="-ss" type="boolean" truevalue="-ss" falsevalue="" checked="false" label="Strand-specific"/>
78 <param name="r" optional="true" argument="-r" type="data" format="fasta" multiple="true" label="Reference genome" />
79 <conditional name="gene_coordinates">
80 <param name="use_gtf" type="select" label="Use file with gene coordinates in GTF/GFF format?" help="We recommend to use files downloaded from GENCODE or Ensembl.">
81 <option value="true" selected="true">Yes</option>
82 <option value="false">No</option>
83 </param>
84 <when value="true">
85 <param name="gtf" argument="--gtf" type="data" format="gtf, gff, gff3" multiple="true" label="GTF/GFF file"/>
86 <param argument="--disable_infer_genes" type="boolean" truevalue="--disable_infer_genes" falsevalue="" checked="false" label=" GTF file contains genes records?"/>
87 <param argument="--disable_infer_transcripts" type="boolean" truevalue="--disable_infer_transcripts" falsevalue="" checked="false" label="GTF file contains transcripts records?"/>
88 </when>
89 <when value="false">
90 </when>
91 </conditional>
92 <param argument="--prokaryote" type="boolean" truevalue="--prokaryote" falsevalue="" checked="false" label="Is genome prokararyotic?"/>
93 <param argument="--min_alignment" type="integer" value="50" label="Minimal alignment length to be used"/>
94 <param argument="--blat" type="boolean" truevalue="--blat" falsevalue="" checked="false" label="Run with BLAT alignment tool instead of GMAP?" />
95 <param argument="--busco_lineage" type="boolean" truevalue="--busco_lineage" falsevalue="" checked="false" label="Run BUSCO tool?" help="The BUSCO tool detects core genes in the assembly. Use this option to provide path to the BUSCO lineage data (Eukaryota, Metazoa, Arthropoda, Vertebrata or Fungi)."/>
96 <param argument="--gene_mark" type="boolean" truevalue="--gene_mark" falsevalue="" checked="false" label="Run with GeneMarkS-T gene prediction tool?"/>
97 <param argument="--lower_threshold" type="integer" value="50" label="Lower threshold for x_assembled/covered/matched metrics."/>
98 <param argument="--upper_threshold" type="integer" value="95" label="Upper threshold for x_assembled/covered/matched metrics."/>
99 <param name="out_sr" type="select" multiple="true" label="Short report formats">
100 <option value="tsv" selected="true">tabular</option>
101 <option value="txt">txt</option>
102 <option value="tex">tex</option>
103 <option value="pdf" selected="true">pdf</option>
104 </param>
105 <param name="out_add" type="select" multiple="true" label="Additional outputs">
106 <option value="logs">Logs</option>
107 <option value="plots" selected="true">Plots (only for n>1)</option>
108 <option value="comparison" selected="true">Comparison for Chromosomes/scaffolds files (only for n>1)</option>
109 <option value="details" selected="true">Details per Chromosomes/scaffolds file</option>
110 <option value="details_plots" selected="true">Details per Chromosomes/scaffolds file as plot</option>
111 </param>
112 </inputs>
113
114 <outputs>
115 <data name="short_report_pdf" format="pdf" label="${tool.name} on ${on_string}: pdf report" from_work_dir="outputdir/short_report.pdf">
116 <filter>"pdf" in out_sr</filter>
117 </data>
118 <data name="short_report_txt" format="txt" label="${tool.name} on ${on_string}: txt report" from_work_dir="outputdir/short_report.txt">
119 <filter>"txt" in out_sr</filter>
120 </data>
121 <data name="short_report_tex" format="txt" label="${tool.name} on ${on_string}: tex report" from_work_dir="outputdir/short_report.tex">
122 <filter>"tex" in out_sr</filter>
123 </data>
124 <data name="short_report_tsv" format="tabular" label="${tool.name} on ${on_string}: tsv report" from_work_dir="outputdir/short_report.tsv">
125 <filter>"tsv" in out_sr</filter>
126 </data>
127 <collection name="list_logs" type="list" label="${tool.name} on ${on_string}: logs" >
128 <discover_datasets ext="txt" pattern="(?P&lt;name&gt;.+)\.log" directory="outputdir/logs/" visible="false" />
129 <filter>"logs" in out_add</filter>
130 </collection>
131 <collection name="list_comparison_png" type="list" label="${tool.name} on ${on_string}: comparison plots" >
132 <discover_datasets ext="png" pattern="(?P&lt;name&gt;.+)\.png" directory="outputdir/comparison_output/" visible="false" recurse="true"/>
133 <filter> len(input)>1 and "plots" in out_add </filter>
134 </collection>
135 <collection name="list_comparison" type="list" label="${tool.name} on ${on_string}: comparison" >
136 <discover_datasets ext="txt" pattern="(?P&lt;name&gt;.+)\.txt" directory="outputdir/comparison_output/" visible="false" recurse="true" />
137 <filter> len(input)>1 and "comparison" in out_add</filter>
138 </collection>
139 <collection name="data_collection" type="list:list" label="${tool.name} on ${on_string}: detailed output">
140 <discover_datasets pattern="(?P&lt;identifier_0&gt;.+)_____(?P&lt;identifier_1&gt;.+)\.(?P&lt;ext&gt;txt)" directory="details/" visible="false"/>
141 <filter> len(input)>1 and "details" in out_add</filter>
142 </collection>
143 <collection name="data_collection_png" type="list:list" label="${tool.name} on ${on_string}: detailed output plots">
144 <discover_datasets pattern="(?P&lt;identifier_0&gt;.+)_____(?P&lt;identifier_1&gt;.+)\.(?P&lt;ext&gt;png)" directory="details/" visible="false"/>
145 <filter> len(input)>1 and "details_plots" in out_add</filter>
146 </collection>
147 </outputs>
148 <tests>
149 <test expect_num_outputs="7">
150 <param name="input" value="idba.fasta,Trinity.fasta" ftype="fasta" />
151 <param name="r" value="Saccharomyces_cerevisiae.R64-1-1.75.dna.toplevel.fa" ftype="fasta" />
152 <conditional name="gene_coordinates">
153 <param name="use_gtf" value="true" />
154 <param name="gtf" value="Saccharomyces_cerevisiae.R64-1-1.75.gtf" ftype="gtf" />
155 <param name="disable_infer_genes" value="true"/>
156 <param name="disable_infer_transcripts" value="true"/>
157 </conditional>
158 <param name="out_sr" value="txt,tex,tsv" />
159 <param name="out_add" value="logs,comparison,plots,details" />
160 <output name="short_report_txt">
161 <assert_contents>
162 <has_text text="SHORT SUMMARY REPORT"/>
163 </assert_contents>
164 </output>
165 <output name="short_report_tex">
166 <assert_contents>
167 <has_text text="Short summary report"/>
168 <has_text text="end{document}"/>
169 </assert_contents>
170 </output>
171 <output name="short_report_tsv">
172 <assert_contents>
173 <has_line_matching expression="^METRICS/TRANSCRIPTS\tidba\tTrinity$"/>
174 </assert_contents>
175 </output>
176 <output_collection name="list_comparison_png" type="list" count="15"/>
177 <output_collection name="list_comparison" type="list" count="19"/>
178 <output_collection name="list_logs" type="list" count="8"/>
179 <output_collection name="data_collection" type="list:list" count="2">
180 <element name="Trinity">
181 <element name="alignment_metrics">
182 <assert_contents><has_line_matching expression="^METRICS/TRANSCRIPTS\s+Trinity\s+$"/></assert_contents>
183 </element>
184 <element name="alignment_multiplicity"/>
185 <element name="alignments_per_isoform"/>
186 <element name="basic_metrics"/>
187 <element name="block_length"/>
188 <element name="blocks_per_alignment"/>
189 <element name="database_metrics"/>
190 <element name="misassemblies"/>
191 <element name="mismatch_rate"/>
192 <element name="sensitivity"/>
193 <element name="specificity"/>
194 <element name="transcript_length"/>
195 <element name="x-aligned"/>
196 <element name="x-assembled_exons"/>
197 <element name="x-assembled"/>
198 <element name="x-covered_exons"/>
199 <element name="x-covered"/>
200 <element name="x-matched_blocks"/>
201 <element name="x-matched"/>
202 </element>
203 <element name="idba">
204 <element name="alignment_metrics">
205 <assert_contents>
206 <has_line_matching expression="^METRICS/TRANSCRIPTS\s+idba\s+$"/>
207 </assert_contents>
208 </element>
209 </element>
210 </output_collection>
211 </test>
212 <test expect_num_outputs="8">
213 <param name="input" value="spades.311.fasta" ftype="fasta" />
214 <conditional name="gene_coordinates">
215 <param name="use_gtf" value="false" />
216 </conditional>
217 <param name="min_alignment" value="30" />
218 <param name="lower_threshold" value="45" />
219 <param name="upper_threshold" value="95"/>
220 <param name="out_sr" value="txt,tex,tsv,pdf" />
221 <param name="out_add" value="logs" />
222 <output name="short_report_pdf" file="short_report.pdf" compare="sim_size"/>
223 <output name="short_report_txt" file="short_report.txt" compare="sim_size"/>
224 <output name="short_report_tex" file="short_report.tex" compare="sim_size"/>
225 <output name="short_report_tsv" file="short_report.tsv" compare="sim_size"/>
226 <output_collection name="list_logs" type="list">
227 <element name="rnaQUAST" file="rnaQUAST"/>
228 <element name="spades.311.GeneMarkS_T.err" file="spades.311.GeneMarkS_T.err"/>
229 </output_collection>
230 <output_collection name="data_collection" type="list:list">
231 <element name="spades.311">
232 <element name="alignment_metrics" file="spades.311/alignment_metrics.txt"/>
233 </element>
234 </output_collection>
235 </test>
236 </tests>
237 <help><![CDATA[
238 **What it does**
239 rnaQUAST: a quality assessment tool for de novo transcriptome assemblies
240 rnaQUAST—a tool for evaluating RNA-Seq assembly quality and benchmarking transcriptome assemblers using reference genome and gene database. rnaQUAST calculates various metrics that demonstrate completeness and correctness levels of the assembled transcripts, and outputs them in a user-friendly report.
241
242 **Using rnaQuast without reference** you wont get:
243 - x_assebled PNG & Txt
244 - x_assembled Exons PNG & Txt
245 - Alignments per Isoform PNG & Txt
246 - x_covered PNG & Txt
247 - x_covered Exons PNG & Txt
248 - x_matched PNG & Txt
249 - x_matched PNG & Txt
250 - x_matched Blocks PNG & Txt
251 - gmap build out log
252 - gmap build err log
253
254 **Using rnaQuast with reference** you will get:
255 - PDF report
256 - TXT report
257 - TSV report
258 - Log
259 - Alignement Metrics
260 - Basic Metrics
261 - Misassemblies
262 - Specificity
263 - Sensitivity
264 - Alignment multiplicity
265 - Block lentgh
266 - Blocks per alignment
267 - Mismatch rate
268 - Transcript length
269 - x_aligned
270 - Transcript Length PNG
271 - Nx PNG
272 - Block length PNG
273 - Blocks per alignment PNG
274 - gmap build out log
275 - gmap build err log
276
277 **Using rnaQuast without gene coordinates** you wont get:
278 - x_assebled PNG & Txt
279 - x_assembled Exons PNG & Txt
280 - Alignments per Isoform PNG & Txt
281 - x_covered PNG & Txt
282 - x_covered Exons PNG & Txt
283 - x_matched PNG & Txt
284 - x_matched PNG & Txt
285 - x_matched Blocks PNG & Txt
286 - gmap build out log
287 - gmap build err log
288 - Database Metrics
289 - Alignment multiplicity PNG
290 - Mismatch rate PNG
291 - NAx PNG
292 - x_aligned PNG
293 **Using rnaQuast with gene coordinates** you will get:
294 - PDF report
295 - TXT report
296 - TSV report
297 - Log
298 - Alignement Metrics
299 - Basic Metrics
300 - Misassemblies
301 - Specificity
302 - Sensitivity
303 - Alignment multiplicity
304 - Block lentgh
305 - Blocks per alignment
306 - Mismatch rate
307 - Transcript length
308 - x_aligned
309 - Transcript Length PNG
310 - Nx PNG
311 - Block length PNG
312 - Blocks per alignment PNG
313 - gmap build out log
314 - gmap build err log
315 - Database Metrics
316 - Alignment multiplicity PNG
317 - Mismatch rate PNG
318 - NAx PNG
319 - x_aligned PNG
320 **Using rnaQuast without drawing plots** you wont get any PNG's and txt-files of these + the PDF report
321 *Output*
322 **Reports**
323 The following text files with reports are contained in comparison_output directory and include results for all input assemblies. In addition, these reports are contained in <assembly_label>_output directories for each assembly separately.
324 database_metrics.txt
325 Gene database metrics.
326 - Genes / Protein coding genes – number of genes / protein coding genes
327 - Isoforms / Protein coding isoforms – number of isoforms / protein coding isoforms
328 - Exons / Introns – total number of exons / introns
329 - Total / Average length of all isoforms, bp
330 - Average exon length, bp
331 - Average intron length, bp
332 - Average / Maximum number of exons per isoform
333 Database coverage – the total number of bases covered by reads (in all isoforms) divided by the total length of all isoforms.
334 x%-covered genes / isoforms / exons – number of genes / isoforms / exons from the database that have at least x% of bases covered by all reads, where x is specified with lower_threshold /upper_threshold options (50% / 95% by default).
335 basic_mertics.txt
336 Basic transcripts metrics are calculated without reference genome and gene database.
337 - Transcripts – total number of assembled transcripts.
338 - Transcripts > 500 bp
339 - Transcripts > 1000 bp
340 - Average length of assembled transcripts
341 - Longest transcript
342 - Total length
343 - Transcript N50 – a maximal number N, such that the total length of all transcripts longer than N bp is at least 50% of the total length of all transcripts.
344 alignment_metrics.txt
345 Alignment metrics are calculated with reference genome but without using gene database. To calculate the following metrics rnaQUAST filters all short partial alignments (see min_alignment option) and attempts to select the best hits for each transcript.
346 - Transcripts – total number of assembled transcripts.
347 - Aligned – the number of transcripts having at least 1 significant alignment.
348 - Uniquely aligned – the number of transcripts having a single significant alignment.
349 - Multiply aligned – the number of transcripts having 2 or more significant alignments. Multiply aligned transcripts are stored in <assembly_label>.paralogs.fasta file.
350 - Misassembly candidates reported by GMAP (or BLAT) – transcripts that have discordant best-scored alignment (partial alignments that are either mapped to different strands / different chromosomes / in reverse order / too far away).
351 - Unaligned – the number of transcripts without any significant alignments. Unaligned transcripts are stored in <assembly_label>.unaligned.fasta file.
352 Number of assembled transcripts = Unaligned + Aligned = Unaligned + (Uniquely aligned + Multiply aligned + Misassembly candidates reported by GMAP (or BLAT)).
353 Alignment metrics for non-misassembled transcripts
354 - Average aligned fraction. Aligned fraction for a single transcript is defined as total number of aligned bases in the transcript divided by the total transcript length.
355 - Average alignment length. Aligned length for a single transcript is defined as total number of aligned bases in the transcript.
356 - Average blocks per alignment. A block is defined as a continuous alignment fragment without indels.
357 - Average block length (see above).
358 - Average mismatches per transcript – average number of single nucleotide differences with reference genome per transcript.
359 - NA50 – N50 for alignments.
360 misassemblies.txt
361 - Transcripts – total number of assembled transcripts.
362 - Misassembly candidates reported by GMAP (or BLAT) – transcripts that have discordant best-scored alignment (partial alignments that are either mapped to different strands / different chromosomes / in reverse order / too far away).
363 - Misassembly candidates reported by BLASTN – transcripts are aligned to the isoform sequences extracted from the genome using gene database with BLASTN and then transcripts that have partial alignments to multiple isoforms are selected.
364 - Misassemblies – misassembly candidates confirmed by both methods described above. Using both methods simultaneously allows to avoid considering misalignments that can be caused, for example, by paralogous genes or genomic repeats. Misassembled transcripts are stored in <assembly_label>.misassembled.fasta file.
365 sensitivity.txt
366 Assembly completeness (sensitivity). For the following metrics (calculated with reference genome and gene database) rnaQUAST attempts to select best-matching database isoforms for every transcript. Note that a single transcript can contribute to multiple isoforms in the case of, for example, paralogous genes or genomic repeats. At the same time, an isoform can be covered by multiple transcripts in the case of fragmented assembly or duplicated transcripts in the assembly.
367 - Database coverage – the total number of bases covered by transcripts (in all isoforms) divided by the total length of all isoforms.
368 - Duplication ratio – total number of aligned bases in assembled transcripts divided by the total number of isoform covered bases. This metric does not count neither paralogous genes nor shared exons, only real overlaps of the assembled sequences that are mapped to the same isoform.
369 - Average number of transcripts mapped to one isoform.
370 - x%-assembled genes / isoforms/ exons – number of genes / isoforms / exons from the database that have at least x% captured by a single assembled transcript, where x is specified with lower_threshold / upper_threshold options (50% / 95% by default). 95%-assembled isoforms are stored in <assembly_label>.95%assembled.fasta file.
371 - x%-covered genes / isoforms– number of genes / isoforms from the database that have at least x% of bases covered by all alignments, where x is specified with lower_threshold / upper_threshold options (50% / 95% by default).
372 - Mean isoform assembly – assembled fraction of a single isoform is calculated as the largest number of its bases captured by a single assembled transcript divided by its length; average value is computed for isoforms with > 0 bases covered.
373 - Mean isoform coverage – coverage of a single isoform is calculated as the number of its bases covered by all assembled transcripts divided by its length; average value is computed for isoforms with > 0 bases covered.
374 - Mean exon coverage – coverage of a single exon is calculated as the number of its bases covered by all assembled transcripts divided by its length; average value is computed for exons with > 0 bases covered.
375 - Average percentage of isoform x%-covered exons, where x is specified with lower_threshold / upper_threshold options (50% / 95% by default). For each isoform rnaQUAST calculates the number of x%-covered exons divided by the total number of exons. Afterwards it computes average value for all covered isoforms.
376 BUSCO metrics. The following metrics are calculated only when busco_lineage option is used (see options for details).
377 - Complete – percentage of completely recovered genes.
378 - Partial – percentage of partially recovered genes.
379 GeneMarkS-T metrics. The following metrics are calculated when reference and gene database are not provided or gene_mark option is used (see options for details).
380 - Genes – number of predicted genes in transcripts.
381 specificity.txt
382 Assembly specificity. To compute the following metrics we use only transcripts that have at least one significant alignment and are not misassembled.
383 - Unannotated – total number of transcripts that do not cover any isoform from the database. Unannotated transcripts are stored in <assembly_label>.unannotated.fasta file.
384 - x%-matched – total number of transcripts that have at least x% covering an isoform from the database, where x is specified with lower_threshold / upper_threshold options (50% / 95% by default).
385 - Mean fraction of transcript matched – matched fraction of a single transcript is calculated as the number of its bases covering an isoform divided by the transcript length; average value is computed for transcripts with > 0 bases matched.
386 - Mean fraction of block matched – matched fraction of a single block is calculated as the number of its bases covering an isoform divided by the block length; average value is computed for blocks with > 0 bases matched.
387 - x%-matched blocks – percentage of blocks that have at least x% covering an isoform from the database, where x is specified with lower_threshold / upper_threshold options (50% / 95% by default).
388 - Matched length – total number of transcript bases covering isoforms from the database.
389 - Unmatched length – total alignment length - Matched length.
390 relative_database_coverage.txt
391 Relative database coverage metrics are calculated only when raw reads (or read alignments) are provided. rnaQUAST uses read alignments to estimate the upper bound of the database coverage and the number of x-covered genes / isoforms / exons (see read coverage) and computes the following metrics:
392 - Relative database coverage – ratio between transcripts database coverage and reads database coverage.
393 - Relative x%-assembled genes / isoforms / exons – ratio between transcripts x%-assembled and reads x%-covered genes / isoforms / exons.
394 - Relative x%-covered genes / isoforms / exons – ratio between transcripts x%-covered and reads x%-covered genes / isoforms / exons.
395 **Detailed output**
396 These files are contained in <assembly_label>_output directories for each assembly separately.
397 - <assembly_label>.unaligned.fasta – transcripts without any significant alignments.
398 - <assembly_label>.paralogs.fasta – transcripts having 2 or more significant alignments.
399 - <assembly_label>.misassembled.fasta – misassembly candidates detected by methods described above. See misassemblies.txt description for details.
400 - <assembly_label>.correct.fasta – transcripts with exactly 1 significant alignment that do not contain misassemblies.
401 - <assembly_label>.x%-assembled.list – IDs of the isoforms from the database that have at least x% captured by a single assembled transcript, where x is specified by the user with an option upper_threshold (95% by default).
402 - <assembly_label>.unannotated.fasta – transcripts that do not cover any isoform from the database.
403 The following text file is contained in comparison_output directory and <assembly_label>_output directories for each assembly separately.
404 reads.x%-covered.list – IDs of the isoforms from the database that have at least x% bases covered by all reads, where x is specified with lower_threshold / upper_threshold options (50% / 95% by default).
405 **Plots**
406 The following plots are similarly contained in both comparison_output directory and <assembly_label>_output directories. Please note, that most of the plots represent cumulative distributions and some plots are given in logarithmic scale.
407 Basic
408 - transcript_length.png – assembled transcripts length distribution (+ database isoforms length distribution).
409 - block_length.png – alignment blocks length distribution (+ database exons length distribution).
410 - x-aligned.png – transcript aligned fraction distribution.
411 - blocks_per_alignment.png – distribution of number of blocks per alignment (+ distribution of number of database exons per isoform).
412 - alignment_multiplicity.png – distribution for the number of significant alignment for each multiply-aligned transcript.
413 - mismatch_rate.png – substitution errors per alignment distribution.
414 - Nx.png – Nx plot for transcripts. Nx is a maximal number N, such that the total length of all transcripts longer than N bp is at least x% of the total length of all transcripts.
415 - NAx.png – Nx plot for alignments.
416 **Sensitivity**
417 - x-assembled.png – a histogram in which each bar represents the number of isoforms from the database that have at least x% captured by a single assembled transcript.
418 - x-covered.png – a histogram in which each bar represents the number of isoforms from the database that have at least x% of bases covered by all alignments.
419 - x-assembled_exons.png – a histogram in which each bar represents the number of exons from the database that have at least x% captured by a single assembled transcript.
420 - x-covered_exons.png – a histogram in which each bar represents the number of exons from the database that have at least x% of bases covered by all alignments.
421 - alignments_per_isoform.png – plot showing number of transcript alignments per isoform
422 **Specificity**
423 - x-matched.png – a histogram in which each bar represents the number of transcripts that have at least x% matched to an isoform from the database.
424 - x-matched_blocks.png – a histogram in which each bar represents the number of all blocks from all transcript alignments that have at least x% matched to an isoform from the database.
425 ]]></help>
426 <citations>
427 <citation type="doi">10.1093/bioinformatics/btw218 </citation>
428 </citations>
429 </tool>