Mercurial > repos > cpt > cpt_blast_to_xmfa
comparison blast2pxmfa.xml @ 1:c66d6978a5f8 draft
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
author | cpt |
---|---|
date | Mon, 05 Jun 2023 02:14:17 +0000 |
parents | |
children | 1623f46fdd2e |
comparison
equal
deleted
inserted
replaced
0:84761ea60231 | 1:c66d6978a5f8 |
---|---|
1 <tool id="edu.tamu.cpt.blast.blast2pxmfa" name="Blast TSV to Protein XMFA" version="1.0"> | |
2 <description/> | |
3 <macros> | |
4 <import>macros.xml</import> | |
5 <import>cpt-macros.xml</import> | |
6 </macros> | |
7 <expand macro="requirements"> | |
8 <requirement type="package" version="2.1">clustalw</requirement> | |
9 </expand> | |
10 <command detect_errors="aggressive"><![CDATA[ | |
11 '$__tool_directory__/blast2pxmfa.py' | |
12 @BLAST_TSV@ | |
13 '$fasta' | |
14 '$gff3' | |
15 '$output' | |
16 ]]></command> | |
17 <inputs> | |
18 <expand macro="blast_tsv"/> | |
19 <expand macro="gff3_with_fasta"/> | |
20 </inputs> | |
21 <outputs> | |
22 <data format="pxmfa" name="output"/> | |
23 </outputs> | |
24 <tests> | |
25 <test> | |
26 <param name="blast_tsv" value="results.tsv"/> | |
27 <param name="fasta" value="related.fa"/> | |
28 <param name="gff3" value="related.gbk.gff"/> | |
29 <output name="output" file="cbk.xmfa"> | |
30 <assert_contents> | |
31 <has_n_lines n="7547" delta="100"/> | |
32 </assert_contents> | |
33 </output> | |
34 </test> | |
35 </tests> | |
36 <help><![CDATA[ | |
37 .. class:: warningmark | |
38 | |
39 You likely should first filter your data first using the `Blast Tabular Dice | |
40 Filter tool <root?tool_id=edu.tamu.cpt.blast.blasttab_dice_filter>`__. | |
41 | |
42 **What it does** | |
43 | |
44 This tool processes BLAST Tabular results into a *protein* XMFA file. This | |
45 permits visualizing the data with CPT developed XMFA based tooling. | |
46 | |
47 **How it works** | |
48 | |
49 The tool works by: | |
50 | |
51 - taking the set of blast results | |
52 - clustering them according to relationships detected by blast | |
53 - running ClustalW to generate a set of alignments for each cluster | |
54 - outputting those clusters in the XMFA format | |
55 ]]></help> | |
56 <citations> | |
57 </citations> | |
58 </tool> |