Mercurial > repos > cpt > cpt_gbk_to_gff
comparison cpt_gbkToGff3.xml @ 1:bb6332a85aa6 draft
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
author | cpt |
---|---|
date | Mon, 05 Jun 2023 02:43:04 +0000 |
parents | |
children | a921d6148d88 |
comparison
equal
deleted
inserted
replaced
0:a68f32350196 | 1:bb6332a85aa6 |
---|---|
1 <tool id="edu.tamu.cpt.gff3.customGbkToGff" name="(CPT) Genbank to GFF3: " version="20.1.0.0"> | |
2 <description> CPT made Biobython-based solution</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 '$__tool_directory__/gbk_to_gff3.py' | |
10 '$gbkIn' | |
11 '$makeMRNA' | |
12 '$makeGene' | |
13 --identifier "$qualID" | |
14 --fastaFile '$fastaOut' | |
15 > '$default']]></command> | |
16 <inputs> | |
17 <param label="GenBank file" name="gbkIn" type="data" format="genbank"/> | |
18 <param checked="true" label="Automatically generate any missing Gene features if CDS/RBS has none" name="makeGene" type="boolean" truevalue="--makeGene" falsevalue=""/> | |
19 <param checked="true" label="Automatically generate missing mRNA features for genes" name="makeMRNA" type="boolean" truevalue="--makeMRNA" falsevalue=""/> | |
20 <param label="Qualifier to derive GFF ID from" name="qualID" type="text" value="locus_tag"/> | |
21 </inputs> | |
22 <outputs> | |
23 <data format="gff3" hidden="false" name="default"/> | |
24 <data format="fasta" hidden="false" name="fastaOut"/> | |
25 </outputs> | |
26 <tests> | |
27 </tests> | |
28 <help><![CDATA[ | |
29 **What it does** | |
30 | |
31 A Biopython-based script to convert Genbank files to GFF3. Should resolve frame shift errors and other problems caused by the old Bioperl solution. | |
32 | |
33 Will also attempt to automatically parent RBS, CDS, and Exon features without a locus tag to an appropriate gene feature. | |
34 ]]></help> | |
35 <citations> | |
36 <citation type="doi">10.1371/journal.pcbi.1008214</citation> | |
37 <citation type="bibtex"> | |
38 @unpublished{galaxyTools, | |
39 author = {A. Criscione}, | |
40 title = {CPT Galaxy Tools}, | |
41 year = {2019-2021}, | |
42 note = {https://github.com/tamu-cpt/galaxy-tools/} | |
43 } | |
44 </citation> | |
45 </citations> | |
46 </tool> |