comparison gff3_splitgff.xml @ 0:f678e282b320 draft default tip

"planemo upload"
author cpt_testbed
date Fri, 06 May 2022 07:07:23 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:f678e282b320
1 <?xml version="1.0"?>
2 <tool id="edu.tamu.cpt2.gff3.splitGff" name="Split GFF3+Fasta into separate parts" version="22.0.0">
3 <description></description>
4 <macros>
5 <import>macros.xml</import>
6 <import>cpt-macros.xml</import>
7 </macros>
8 <expand macro="requirements"/>
9 <command detect_errors="aggressive"><![CDATA[
10 python $__tool_directory__/gff3_splitgff.py
11 $input
12
13 --gff $gff_out
14 --fasta $fasta_out
15 ]]></command>
16 <inputs>
17 <param label="Combined GFF3/Fasta File" name="input" type="data" format="gff,gff3"/>
18 </inputs>
19 <outputs>
20 <data format="gff3" label="GFF Portion of ${input.name}" name="gff_out"/>
21 <data format="fasta" label="Fasta Portion of ${input.name}" name="fasta_out"/>
22 </outputs>
23 <tests>
24 <test>
25 <param name="input" value="Miro_SplitIn.gff3" />
26 <output name="gff" file="Miro_SplitOut.gff3" />
27 <output name="fasta" file="Miro_SplitOut.fa" />
28 </test>
29 </tests>
30 <help><![CDATA[
31 **What it does**
32
33 Splits apart the GFF3/Fasta data in a combined file into separate fasta and gff3 files.
34 ]]></help>
35 <expand macro="citations" />
36 </tool>