comparison gff3_splitgff.xml @ 3:8bd03ba8510a draft

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