comparison regal.xml @ 0:48a6ea2de0da draft default tip

planemo upload commit 3a0a853d0f21f2eac12b959d1eba7ee9fa289cc3-dirty
author stephenshank
date Wed, 28 Jun 2023 16:22:28 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:48a6ea2de0da
1 <tool id="regal" name="Read-based evaluation of Genome Assemblies" version="1.0" profile="21.05">
2 <description>Assembly statistics from a BED coverage file</description>
3 <requirements>
4 <requirement type="package" version="0.0.1">assemblyqc</requirement>
5 </requirements>
6 <command detect_errors="exit_code"><![CDATA[
7 regal -c $bed -a $ref -o $json -p $percentiles
8 ]]>
9 </command>
10 <inputs>
11 <param argument="bed" type="data" format="bed" label="BED file" help="BED file containing coverage."/>
12 <param argument="ref" type="data" format="fasta" label="FASTA file" help="FASTA file of existing assembly."/>
13 <param argument="percentiles" type="text" label="Percentiles" help="Percentiles for assembly statistics (comma delimited)."/>
14 </inputs>
15 <outputs>
16 <data name="json" format="json" label="${tool.name} on ${on_string}: Assembly JSON"></data>
17 </outputs>
18 <tests>
19 </tests>
20 <help><![CDATA[
21
22 .. class:: infomark
23
24 **Purpose**
25
26 Calculate some statistics associated to assembly quality.
27
28 ------
29
30 .. class:: infomark
31
32 **Outputs**
33
34 This tool generates a JSON file containing contiguous regions and assembly statistics based on the
35 reads that were used to produce a given assembly.
36 ]]>
37 </help>
38 <citations>
39 </citations>
40 </tool>
41