Mercurial > repos > cpt_testbed > functionalworkflow
comparison stop_stats.xml @ 0:f678e282b320 draft default tip
"planemo upload"
| author | cpt_testbed |
|---|---|
| date | Fri, 06 May 2022 07:07:23 +0000 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:f678e282b320 |
|---|---|
| 1 <?xml version="1.0"?> | |
| 2 <tool id="edu.tamu.cpt.gff.stop_codons" name="Stop Codon Statistics" version="1.0"> | |
| 3 <description>Summarise stop codon usage</description> | |
| 4 <macros> | |
| 5 <import>macros.xml</import> | |
| 6 <import>cpt-macros.xml</import> | |
| 7 </macros> | |
| 8 <expand macro="requirements"/> | |
| 9 <command detect_errors="aggressive"><![CDATA[ | |
| 10 @GENOME_SELECTOR_PRE@ | |
| 11 | |
| 12 $__tool_directory__/stop_stats.py | |
| 13 | |
| 14 @GENOME_SELECTOR@ | |
| 15 $gff3_data | |
| 16 > $default]]></command> | |
| 17 <inputs> | |
| 18 <expand macro="genome_selector" /> | |
| 19 <expand macro="gff3_input" /> | |
| 20 </inputs> | |
| 21 <outputs> | |
| 22 <data format="tabular" name="default" label="Stop Codon Usage"/> | |
| 23 </outputs> | |
| 24 <tests> | |
| 25 <test> | |
| 26 <param name="reference_genome_source" value="history" /> | |
| 27 <param name="genome_fasta" value="miro.fa" /> | |
| 28 <param name="gff3_data" value="miro.gff3" /> | |
| 29 | |
| 30 <output name="default" value="stop-stats.tab" /> | |
| 31 </test> | |
| 32 </tests> | |
| 33 <help><![CDATA[ | |
| 34 .. class:: warningmark | |
| 35 | |
| 36 This tool is deprecated. Please use `the new fasta-only tool <root?tool_id=edu.tamu.cpt.fasta.stop_codons>`__. | |
| 37 This change was made to make the tools less complicated and more obvious in | |
| 38 their functionality. Currently this tool makes **assumptions** about your data | |
| 39 which **may be wrong**. | |
| 40 | |
| 41 **What it does** | |
| 42 | |
| 43 This tool looks for CDS features and outputs summarizes the frequencies | |
| 44 of their stop codons:: | |
| 45 | |
| 46 | |
| 47 # Name Codon Count | |
| 48 Ochre TAA 155 | |
| 49 Amber TAG 10 | |
| 50 Opal TGA 111 | |
| 51 ]]></help> | |
| 52 <expand macro="citations" /> | |
| 53 </tool> |
