comparison tools/mira4/mira4_mapping.xml @ 9:302d13490b23 draft

Uploaded v0.0.2 preview 1, BAM output
author peterjc
date Thu, 28 Nov 2013 05:07:59 -0500
parents 902f01c1084b
children 7fcabeeca5df
comparison
equal deleted inserted replaced
8:2ab1d6f6a8ec 9:302d13490b23
1 <tool id="mira_4_0_mapping" name="MIRA v4.0 mapping" version="0.0.1"> 1 <tool id="mira_4_0_mapping" name="MIRA v4.0 mapping" version="0.0.2">
2 <description>Maps Sanger, Roche 454, Solexa/Illumina, Ion Torrent and PacBio reads</description> 2 <description>Maps Sanger, Roche 454, Solexa/Illumina, Ion Torrent and PacBio reads</description>
3 <requirements> 3 <requirements>
4 <requirement type="binary">mira</requirement> 4 <requirement type="binary">mira</requirement>
5 <requirement type="binary">miraconvert</requirement>
5 <requirement type="package" version="4.0">MIRA</requirement> 6 <requirement type="package" version="4.0">MIRA</requirement>
7 <requirement type="binary">samtools</requirement>
8 <requirement type="package" version="0.1.19">samtools</requirement>
6 </requirements> 9 </requirements>
7 <version_command interpreter="python">mira4.py --version</version_command> 10 <version_command interpreter="python">mira4.py --version</version_command>
8 <command interpreter="python"> 11 <command interpreter="python">
9 mira4.py $manifest $out_maf $out_fasta $out_log 12 mira4.py "$manifest" "$out_maf" "$out_bam" "$out_fasta" "$out_log"
10 </command> 13 </command>
14 <stdio>
15 <!-- Assume anything other than zero is an error -->
16 <exit_code range="1:" />
17 <exit_code range=":-1" />
18 </stdio>
11 <inputs> 19 <inputs>
12 <param name="job_type" type="select" label="Assembly type"> 20 <param name="job_type" type="select" label="Assembly type">
13 <option value="genome">Genome</option> 21 <option value="genome">Genome</option>
14 <option value="est">EST (transcriptome)</option> 22 <option value="est">EST (transcriptome)</option>
15 </param> 23 </param>
62 help="Multiple files allowed, for example paired reads can be given as two files (MIRA looks at read names to identify pairs)." /> 70 help="Multiple files allowed, for example paired reads can be given as two files (MIRA looks at read names to identify pairs)." />
63 </repeat> 71 </repeat>
64 </inputs> 72 </inputs>
65 <outputs> 73 <outputs>
66 <data name="out_fasta" format="fasta" label="MIRA #if str($strain_setup)=='same' then 'same strain' else 'reference' # mapping contigs (FASTA)" /> 74 <data name="out_fasta" format="fasta" label="MIRA #if str($strain_setup)=='same' then 'same strain' else 'reference' # mapping contigs (FASTA)" />
75 <data name="out_bam" format="bam" label="MIRA #if str($strain_setup)=='same' then 'same strain' else 'reference' # mapping assembly (BAM)" />
67 <data name="out_maf" format="mira" label="MIRA #if str($strain_setup)=='same' then 'same strain' else 'reference' # mapping assembly" /> 76 <data name="out_maf" format="mira" label="MIRA #if str($strain_setup)=='same' then 'same strain' else 'reference' # mapping assembly" />
68 <data name="out_log" format="txt" label="MIRA #if str($strain_setup)=='same' then 'same strain' else 'reference' # mapping log" /> 77 <data name="out_log" format="txt" label="MIRA #if str($strain_setup)=='same' then 'same strain' else 'reference' # mapping log" />
69 </outputs> 78 </outputs>
70 <configfiles> 79 <configfiles>
71 <configfile name="manifest"> 80 <configfile name="manifest">
167 </tests> 176 </tests>
168 <help> 177 <help>
169 178
170 **What it does** 179 **What it does**
171 180
172 Runs MIRA v4.0 in mapping mode, collects the output, and throws away all the temporary files. 181 Runs MIRA v4.0 in mapping mode, collects the output, generates a sorted BAM
182 file, and throws away all the temporary files.
173 183
174 MIRA is an open source assembly tool capable of handling sequence data from 184 MIRA is an open source assembly tool capable of handling sequence data from
175 a range of platforms (Sanger capillary, Solexa/Illumina, Roche 454, Ion Torrent 185 a range of platforms (Sanger capillary, Solexa/Illumina, Roche 454, Ion Torrent
176 and also PacBio). 186 and also PacBio).
177 187