Mercurial > repos > cpt > cpt_fix_sixpack
view gff3_fix_sixpack.xml @ 4:326429ea1d33 draft
planemo upload commit 03123e94e3e0a9128e5fdcd5bfb2c97917310836
author | cpt |
---|---|
date | Sun, 03 Sep 2023 21:00:07 +0000 |
parents | efa4dfc23549 |
children | e23a13d56fce |
line wrap: on
line source
<tool id="edu.tamu.cpt.gff3.fixsixpack" name="GFF3 Add Gene to CDS for Sixpack" version="19.1.0.0"> <description>Properly formats naive ORF caller output for Apollo</description> <macros> <import>macros.xml</import> <import>cpt-macros.xml</import> </macros> <expand macro="requirements"> <requirement type="package" version="3.9.16">python</requirement> <requirement type="package" version="1.2.2">cpt_gffparser</requirement> <requirement type="package" version="1.81">biopython</requirement> </expand> <command detect_errors="aggressive"><![CDATA[ '$__tool_directory__/gff3_fix_sixpack.py' @INPUT_GFF@ > '$output']]></command> <inputs> <expand macro="gff3_input"/> </inputs> <outputs> <data format="gff3" name="output"/> </outputs> <tests> <test> <param name="gff3_data" value="miro.gff3"/> <output name="output" file="miro.6pfix.gff3"/> </test> <test> <param name="gff3_data" value="miro.cds.gff3"/> <output name="output" file="miro.cds6pfix.gff3"/> </test> </tests> <help><![CDATA[ **What it does** This tool **strips ALL the mRNA features** in a GFF3 file. It specifically formats the output of the naïve ORF call Sixpack such that it will be compatible with Apollo via JBrowse. ]]></help> <expand macro="citations"/> </tool>