Mercurial > repos > mbernt > longorf
comparison longORF.xml @ 0:c0f423210af0 draft default tip
planemo upload for repository https://github.com/bernt-matthias/mb-galaxy-tools/blob/master/tools/longorf/ commit 82ae2fa7e7a4a51f7583c6a95bdafc5f843c7c3b
| author | mbernt |
|---|---|
| date | Mon, 07 Aug 2023 13:52:15 +0000 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:c0f423210af0 |
|---|---|
| 1 <tool id="longORF" name="Obtain longest ORFs" version="0.3.0"> | |
| 2 <description> in six-frame translations</description> | |
| 3 <command><![CDATA[ | |
| 4 python $__tool_directory__/getLongestORF.py $input $output_longestORF $output_ORFs | |
| 5 ]]> | |
| 6 </command> | |
| 7 <inputs> | |
| 8 <param name="input" format="fasta" type="data" label="sequences"/> | |
| 9 </inputs> | |
| 10 <outputs> | |
| 11 <data name="output_longestORF" format="fasta"/> | |
| 12 <data name="output_ORFs" format="tabular"/> | |
| 13 </outputs> | |
| 14 | |
| 15 <tests> | |
| 16 <test> | |
| 17 <param name="input" value="test_input.fasta"/> | |
| 18 <output name="output_longestORF" file="test_output.fasta"/> | |
| 19 <output name="output_ORFs" file="test_output.tab"/> | |
| 20 </test> | |
| 21 </tests> | |
| 22 <help><![CDATA[ | |
| 23 **What it does** | |
| 24 | |
| 25 This tool identifies the longest Open Reading Frames within the six-frame translations of a set of sequences. | |
| 26 | |
| 27 **Input** | |
| 28 | |
| 29 It takes an amino acid fasta file with all open reading frames (+ and - strand) listed by the correspondng transcript. The tool is designed to process the output of the Galaxy tool "getorf" from the EMBOSS package. | |
| 30 | |
| 31 **Output** | |
| 32 | |
| 33 For each transcript, the respected longest ORF is identified and listed in fasta format. Furthermore, table with information about seqID, start, end, length, orientation, longest for all ORFs is given.]]> | |
| 34 </help> | |
| 35 </tool> |
