Mercurial > repos > cpt > cpt_start_stats
comparison cpt_starts/start_stats.xml @ 0:9f2517655a1e draft
Uploaded
author | cpt |
---|---|
date | Fri, 13 May 2022 05:38:37 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:9f2517655a1e |
---|---|
1 <?xml version="1.0"?> | |
2 <tool id="edu.tamu.cpt.gff.start_codons" name="Start Codon Statistics" version="1.0"> | |
3 <description>Summarise start 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 python $__tool_directory__/start_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="Start 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="start-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.start_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 start codons. | |
45 ]]></help> | |
46 <expand macro="citations" /> | |
47 </tool> |