comparison promer4_substitions.xml @ 0:bca6b5cb87cd draft default tip

"planemo upload for repository https://github.com/phac-nml/promer commit 09ae227a84e31c9c56f58815b1a0c8c0e0a7900e"
author nml
date Tue, 17 Dec 2019 15:55:27 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:bca6b5cb87cd
1 <tool id="promer4_substitutions" name="report substitutions" version="1.2">
2 <description>aligns two sets of contigs and reports amino acid substitutions between them</description>
3 <requirements>
4 <requirement type="package" version="3.5.6">python</requirement>
5 <requirement type="package" version="4.0.0beta2">mummer4</requirement>
6 <requirement type="package" version="1.68">biopython</requirement>
7 </requirements>
8 <command detect_errors="exit_code"><![CDATA[
9
10 python '$__tool_directory__/promer_substitutions.py' '$reference_fasta' '$query_fasta'
11
12 ]]></command>
13
14 <inputs>
15 <param name="reference_fasta" type="data" format="fasta" optional="false" label="Reference FASTA"/>
16 <param name="query_fasta" type="data" format="fasta" optional="false" label="Query FASTA" />
17 </inputs>
18
19 <outputs>
20 <data format="tabular" label="substitutions" name="output_substitutions" from_work_dir="snps.tab" />
21 <data format="fasta" label="contigs" name="output_contigs" from_work_dir="contigs.fasta" />
22 </outputs>
23
24 <tests>
25 <test>
26 <param name="query_fasta" value="query.fasta" />
27 <param name="reference_fasta" value="reference.fasta" />
28 <output name="output_substitutions" file="snps.tab" ftype="tabular" />
29 <output name="output_contigs" file="contigs.fasta" ftype="fasta" />
30 </test>
31 </tests>
32
33 <help><![CDATA[
34 Report Substitutions
35 =====================
36
37 Aligns a set of query contigs against a set of reference contigs and reports the amino acid differences between the two sets of contigs using MUMmer4 (promer):
38
39 Kurtz, Stefan et al. “Versatile and Open Software for Comparing Large Genomes.” Genome Biology 5.2 (2004): R12. PMC. Web. 22 Aug. 2018.
40
41 The alignments are performed in amino acid space. Only the substitutions from the best set of global alignments are reported in the output.
42
43 ------
44 Inputs
45 ------
46
47 1. Query FASTA: A nucleotide or amino acid FASTA query file.
48 2. Reference FASTA: A nucleotide or amino acid FASTA reference file.
49
50 -------
51 Outputs
52 -------
53
54 1. substitions: A tabular file detailing subsitutions between aligned contigs.
55
56 ]]></help>
57 <citations>
58 </citations>
59 </tool>