Mercurial > repos > iracooke > protk_proteogenomics
comparison gff3_to_fasta.xml @ 0:956bfab63005 draft default tip
planemo upload for repository https://github.com/iracooke/protk-galaxytools/blob/master/protk-proteogenomics/.shed.yml commit 24e0fef2496984648a8a5cd5bff4d6b9b634a302-dirty
author | iracooke |
---|---|
date | Tue, 20 Oct 2015 20:36:03 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:956bfab63005 |
---|---|
1 <tool id="gff3_to_fasta" name="Extract proteins from gff3" version="1.1.1"> | |
2 <description>Extract proteins from gff3 and encode genomic coordinates in the fasta header</description> | |
3 <requirements> | |
4 <container type="docker">iracooke/protk-1.4.3</container> | |
5 <requirement type="package" version="1.4.3">protk</requirement> | |
6 </requirements> | |
7 <stdio> | |
8 <exit_code range="1:" level="fatal" description="Failure" /> | |
9 </stdio> | |
10 <command> | |
11 augustus_to_proteindb.rb $gff_file -o $output $coords | |
12 </command> | |
13 <inputs> | |
14 <param name="gff_file" type="data" format="gff3" label="Augustus Generated gff3 File" /> | |
15 <param name="coords" type="boolean" label="Write genomic coordinates" help="" truevalue="--info" falsevalue="" /> | |
16 </inputs> | |
17 <outputs> | |
18 <data format="fasta" name="output" /> | |
19 </outputs> | |
20 <tests> | |
21 <!-- Just test that the tool runs and produces vaguely correct output --> | |
22 <test> | |
23 <param name="gff_file" value="augustus_sample.gff" format="gff3"/> | |
24 <output name="output" file="augustus_sample.fasta" format="fasta"/> | |
25 </test> | |
26 </tests> | |
27 <help> | |
28 | |
29 **What it does** | |
30 | |
31 Extract proteins from gff3 and encode genomic coordinates in the fasta header. | |
32 Currently this only works with gff3 generated using the Augustus gene finder | |
33 | |
34 </help> | |
35 </tool> |