comparison cpt_convert_mga_to_gff3.xml @ 0:d5c3354c166d draft default tip

Uploaded
author cpt_testbed
date Fri, 29 Apr 2022 10:33:36 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:d5c3354c166d
1 <?xml version="1.0"?>
2 <tool id="edu.tamu.cpt2.util.mga_to_gff3" name="MGA to GFF3" version="19.1.0.0">
3 <description></description>
4 <macros>
5 <import>cpt-macros.xml</import>
6 <import>macros.xml</import>
7 </macros>
8 <expand macro="requirements"/>
9 <command detect_errors="aggressive">
10 @GENOME_SELECTOR_PRE@
11
12 python $__tool_directory__/cpt_convert_mga_to_gff3.py
13 $mga
14 @GENOME_SELECTOR@
15 > $data
16
17 </command>
18 <inputs>
19 <param label="MGA Output" name="mga" type="data" format="tabular"/>
20 <expand macro="genome_selector" />
21 </inputs>
22 <outputs>
23 <data format="gff3" name="data">
24 </data>
25 </outputs>
26 <tests>
27 <test>
28 <param name="reference_genome_source" value="history" />
29 <param name="genome_fasta" value="ConvMga_In.fa" />
30 <param name="mga" value="ConvMga_In.out" />
31 <output name="data" file="ConvMga_Out.gff3" />
32 </test>
33 </tests>
34 <help>
35 **What it does**
36
37 Converts an input MetaGeneAnnotator table to the GFF3 format.
38 </help>
39 <expand macro="citations" />
40 </tool>