Mercurial > repos > bgruening > glimmer_knowledge_based
comparison glimmer_w_icm.xml @ 3:21d0af260f11 draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/glimmer commit a80e3e4aa3a40970af507bf9119cf7f1c2ffb336
author | iuc |
---|---|
date | Mon, 16 Dec 2024 14:42:19 +0000 |
parents | ce89c473666d |
children |
comparison
equal
deleted
inserted
replaced
2:ce89c473666d | 3:21d0af260f11 |
---|---|
1 <tool id="glimmer_knowledge_based" name="Glimmer3" version="@WRAPPER_VERSION@"> | 1 <tool id="glimmer_knowledge_based" name="Glimmer3" version="@WRAPPER_VERSION@" profile="@PROFILE_VERSION@"> |
2 <description>Predict ORFs in prokaryotic genomes (knowlegde-based)</description> | 2 <description>Predict ORFs in prokaryotic genomes (knowlegde-based)</description> |
3 <expand macro="bio_tools"/> | |
4 <macros> | 3 <macros> |
5 <import>macros.xml</import> | 4 <import>macros.xml</import> |
6 </macros> | 5 </macros> |
6 <expand macro="bio_tools"/> | |
7 <expand macro="requirements"/> | 7 <expand macro="requirements"/> |
8 <command detect_errors="aggressive"><![CDATA[ | 8 <command detect_errors="aggressive"><![CDATA[ |
9 glimmer3 | 9 glimmer3 |
10 --max_olap $max_olap | 10 --max_olap $max_olap |
11 --gene_len $gene_len | 11 --gene_len $gene_len |
85 <when value="free_form"> | 85 <when value="free_form"> |
86 <param name="stop_codons" type="text" value="tag,tga,taa" label="Specify stop codons as a comma-separated list" /> | 86 <param name="stop_codons" type="text" value="tag,tga,taa" label="Specify stop codons as a comma-separated list" /> |
87 </when> | 87 </when> |
88 </conditional> | 88 </conditional> |
89 | 89 |
90 <param name="report" type="boolean" truevalue="" falsevalue="" checked="false" label="Report the classic glimmer table output"/> | 90 <param name="report" type="boolean" checked="false" label="Report the classic glimmer table output"/> |
91 <param name="detailed_report" type="boolean" truevalue="" falsevalue="" checked="false" label="Output a detailed gene prediction report as separate file"/> | 91 <param name="detailed_report" type="boolean" checked="false" label="Output a detailed gene prediction report as separate file"/> |
92 </inputs> | 92 </inputs> |
93 <outputs> | 93 <outputs> |
94 <data name="genes_output" format="fasta" label="Glimmer3 on ${on_string} (Gene Prediction FASTA)" /> | 94 <data name="genes_output" format="fasta" label="Glimmer3 on ${on_string} (Gene Prediction FASTA)" /> |
95 <data name="report_output" format="txt" label="Glimmer3 on ${on_string} (Gene Prediction table)"> | 95 <data name="report_output" format="txt" label="Glimmer3 on ${on_string} (Gene Prediction table)"> |
96 <filter>report == True</filter> | 96 <filter>report</filter> |
97 </data> | 97 </data> |
98 <data name="detailed_output" format="txt" label="Glimmer3 on ${on_string} (detailed report)"> | 98 <data name="detailed_output" format="txt" label="Glimmer3 on ${on_string} (detailed report)"> |
99 <filter>detailed_report == True</filter> | 99 <filter>detailed_report</filter> |
100 </data> | 100 </data> |
101 </outputs> | 101 </outputs> |
102 <tests> | 102 <tests> |
103 <test> | 103 <test expect_num_outputs="3"> |
104 <param name="seq_input" value='streptomyces_Tue6071_plasmid_genomic.fasta' /> | 104 <param name="seq_input" value='streptomyces_Tue6071_plasmid_genomic.fasta' /> |
105 <param name="icm_input" value='streptomyces_Tu6071_plasmid_genes.icm' ftype="tar" /> | 105 <param name="icm_input" value='streptomyces_Tu6071_plasmid_genes.icm' ftype="tar" /> |
106 <param name="max_olap" value="50" /> | 106 <param name="max_olap" value="50" /> |
107 <param name="gene_len" value="90" /> | 107 <param name="gene_len" value="90" /> |
108 <param name="threshold" value="30" /> | 108 <param name="threshold" value="30" /> |
115 <param name="detailed_report" value="true" /> | 115 <param name="detailed_report" value="true" /> |
116 <param name="report" value="true" /> | 116 <param name="report" value="true" /> |
117 <output name="genes_output" file='glimmer_w_icm_trans-table-11_genomic.fasta' ftype="fasta" /> | 117 <output name="genes_output" file='glimmer_w_icm_trans-table-11_genomic.fasta' ftype="fasta" /> |
118 <output name="report_output" file='glimmer_w_icm_trans-table-11_genomic.out' ftype="txt" /> | 118 <output name="report_output" file='glimmer_w_icm_trans-table-11_genomic.out' ftype="txt" /> |
119 <output name="detailed_output" file='glimmer_w_icm_trans-table-11_genomic.dout' ftype="txt" lines_diff="6" /> | 119 <output name="detailed_output" file='glimmer_w_icm_trans-table-11_genomic.dout' ftype="txt" lines_diff="6" /> |
120 </test> | |
121 <test expect_num_outputs="1"> | |
122 <param name="seq_input" value='streptomyces_Tue6071_plasmid_genomic.fasta' /> | |
123 <param name="icm_input" value='streptomyces_Tu6071_plasmid_genes.icm' ftype="tar" /> | |
124 <param name="max_olap" value="50" /> | |
125 <param name="gene_len" value="90" /> | |
126 <param name="threshold" value="30" /> | |
127 <param name="gc_percent" value="0.0" /> | |
128 <param name="linear" value="--linear" /> | |
129 <param name="no_indep" value="" /> | |
130 <param name="extend" value="" /> | |
131 <param name="start_codons" value="atg,gtg,ttg" /> | |
132 <param name="genbank_gencode" value="11" /> | |
133 <output name="genes_output" file='glimmer_w_icm_trans-table-11_genomic.fasta' ftype="fasta" /> | |
120 </test> | 134 </test> |
121 </tests> | 135 </tests> |
122 <help><![CDATA[ | 136 <help><![CDATA[ |
123 **What it does** | 137 **What it does** |
124 | 138 |