0
|
1 <?xml version="1.0"?>
|
|
2 <tool id="edu.tamu.cpt2.util.glimmer3_to_gff3" name="Glimmer3 to GFF3" version="19.1.0.0">
|
|
3 <description>convert formats</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_glimmer_to_gff3.py
|
|
13 $glimmer
|
|
14 @GENOME_SELECTOR@
|
|
15 > $data
|
|
16 </command>
|
|
17 <inputs>
|
|
18 <param label="Glimmer Output" name="glimmer" type="data" format="tabular,txt"/>
|
|
19 <expand macro="genome_selector" />
|
|
20 </inputs>
|
|
21 <outputs>
|
|
22 <data format="gff3" name="data">
|
|
23 </data>
|
|
24 </outputs>
|
|
25 <tests>
|
|
26 <test>
|
|
27 <param name="reference_genome_source" value="history" />
|
|
28 <param name="genome_fasta" value="ConvGlim_In.fasta" />
|
|
29 <param name="glimmer" value="ConvGlim_In.out" />
|
|
30 <output name="data" file="ConvGlim_Out.gff3" />
|
|
31 </test>
|
|
32 </tests>
|
|
33 <help>
|
|
34 **What it does**
|
|
35
|
|
36 Converts an input Glimmer3 table to the GFF3 format. If the Glimmer3 output indicates a gene wrapping
|
|
37 around over the sequence boundary (as if circular) then it will only convert the upstream fragment and
|
|
38 label it as "_truncated" in the resulting GFF.
|
|
39 </help>
|
|
40 <expand macro="citations" />
|
|
41 </tool>
|