annotate tools/mira_3_4/mira.xml @ 6:1e49ca6731cd draft

Uploaded v0.0.7 take 4, declare package dependency in main tool XML.
author peterjc
date Wed, 24 Apr 2013 12:54:44 -0400
parents c1c7d6f726b0
children e810e45bdad7
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
1 <tool id="mira_assembler" name="Assemble with MIRA" version="0.0.6">
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
2 <description>Takes Sanger, Roche, Illumina, and Ion Torrent data</description>
6
1e49ca6731cd Uploaded v0.0.7 take 4, declare package dependency in main tool XML.
peterjc
parents: 3
diff changeset
3 <requirements>
1e49ca6731cd Uploaded v0.0.7 take 4, declare package dependency in main tool XML.
peterjc
parents: 3
diff changeset
4 <requirement type="python-module">Bio</requirement>
1e49ca6731cd Uploaded v0.0.7 take 4, declare package dependency in main tool XML.
peterjc
parents: 3
diff changeset
5 <requirement type="binary">mira</requirement>
1e49ca6731cd Uploaded v0.0.7 take 4, declare package dependency in main tool XML.
peterjc
parents: 3
diff changeset
6 <requirement type="package" version="3.4.1.1">MIRA</requirement>
1e49ca6731cd Uploaded v0.0.7 take 4, declare package dependency in main tool XML.
peterjc
parents: 3
diff changeset
7 </requirements>
1e49ca6731cd Uploaded v0.0.7 take 4, declare package dependency in main tool XML.
peterjc
parents: 3
diff changeset
8 <version_command interpreter="python">mira.py -v</version_command>
1e49ca6731cd Uploaded v0.0.7 take 4, declare package dependency in main tool XML.
peterjc
parents: 3
diff changeset
9 <command interpreter="python">mira.py mira $out_fasta $out_qual $out_ace $out_caf $out_wig $out_log
3
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
10 ##Give the wrapper script list of output filenames, then the mira command...
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
11 mira --job=$job_method,$job_type,$job_quality
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
12
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
13 ##Input files
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
14 #if $condBackbone.use == "true":
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
15 ## Can this be linked to job_method as well? If mapping we need the backbone...
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
16 -SB:lb=1:bft=fasta -FN:bbin=${condBackbone.filename}
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
17 #end if
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
18 #if $condSanger.use == "true":
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
19 SANGER_SETTINGS
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
20 ## Not easy in Galaxy to add sanger to --job, so use load_sequence_data(lsd) instead
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
21 ## I expect hard trimmed FASTQ files with no NCBI traceinfo XML file
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
22 -LR:lsd=1:mxti=0:ft=fastq -FN:fqi=${condSanger.filename}
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
23 #end if
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
24 #if $condRoche.use == "true":
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
25 454_SETTINGS
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
26 ## Not easy in Galaxy to add 454 to --job, so use load_sequence_data(lsd) instead
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
27 ## I expect hard trimmed FASTQ files with no NCBI traceinfo XML file
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
28 -LR:lsd=1:mxti=0:ft=fastq -FN:fqi=${condRoche.filename}
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
29 #end if
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
30 #if $condIllumina.use == "true":
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
31 SOLEXA_SETTINGS
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
32 ## Not easy in Galaxy to add solexa to --job, so use load_sequence_data(lsd) instead
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
33 -LR:lsd=1:ft=fastq -FN:fqi=${condIllumina.filename}
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
34 ##TODO - Look at -LR FASTQ qual offset (fqqo)
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
35 #end if
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
36 #if $condIonTorrent.use == "true":
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
37 IONTOR_SETTINGS
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
38 ## Not easy in Galaxy to add iontor to --job, so use load_sequence_data(lsd) instead
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
39 ## I expect hard trimmed FASTQ files with no NCBI traceinfo XML file
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
40 -LR:lsd=1:mxti=0:ft=fastq -FN:fqi=${condIonTorrent.filename}
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
41 #end if
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
42
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
43 ##Output files
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
44 COMMON_SETTINGS
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
45
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
46 ##ignore warnings about long read names
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
47 -MI:somrnl=0
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
48
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
49 ##Explicitly request the FASTA (+QUAL), CAF, ACE, WIG output
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
50 ##Explicitly disable formats we won't use like MAF (reduce IO)
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
51 -OUT:orf=1:orc=1:ora=1:orw=1:orm=0:org=0:ors=0
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
52
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
53 ##remove_rollover_tmps, remove_tmp_directory
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
54 -OUT:rrot=1:rtd=1
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
55
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
56 ##put mira temp directory on local storage
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
57 -DI:trt=/tmp
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
58
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
59 </command>
6
1e49ca6731cd Uploaded v0.0.7 take 4, declare package dependency in main tool XML.
peterjc
parents: 3
diff changeset
60 <inputs>
3
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
61 <param name="job_method" type="select" label="Assembly method" help="Mapping mode requires backbone/reference sequence(s)">
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
62 <option value="denovo">De novo</option>
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
63 <option value="mapping">Mapping</option>
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
64 </param>
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
65 <param name="job_type" type="select" label="Assembly type">
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
66 <option value="genome">Genome</option>
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
67 <option value="est">EST (transcriptome)</option>
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
68 </param>
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
69 <param name="job_quality" type="select" label="Assembly quality grade">
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
70 <option value="accurate">Accurate</option>
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
71 <option value="normal">Normal (deprecated)</option>
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
72 <option value="draft">Draft</option>
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
73 </param>
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
74 <!-- Backbone -->
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
75 <conditional name="condBackbone">
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
76 <param name="use" type="select" label="Backbones/reference chromosomes?" help="Required for mapping, optional for de novo assembly.">
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
77 <option value="false">No</option>
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
78 <option value="true">Yes</option>
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
79 </param>
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
80 <when value="false" />
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
81 <when value="true">
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
82 <!-- MIRA also allows CAF and GenBank, but Galaxy doesn't define those (yet) -->
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
83 <param name="filename" type="data" format="fasta" label="Backbone/reference sequences" help="FASTA format" />
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
84 </when>
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
85 </conditional>
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
86 <!-- Sanger -->
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
87 <conditional name="condSanger">
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
88 <param name="use" type="select" label="Sanger/Capillary reads?">
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
89 <option value="false">No</option>
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
90 <option value="true">Yes</option>
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
91 </param>
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
92 <when value="false" />
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
93 <when value="true">
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
94 <param name="filename" type="data" format="fastq" label="Sanger/Capillary reads file" help="FASTQ format" />
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
95 </when>
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
96 </conditional>
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
97 <!-- Roche 454 -->
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
98 <conditional name="condRoche">
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
99 <param name="use" type="select" label="454 reads?">
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
100 <option value="false">No</option>
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
101 <option value="true">Yes</option>
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
102 </param>
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
103 <when value="false" />
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
104 <when value="true">
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
105 <!-- TODO? Support SFF files directly, e.g. with sff_extract, but will need linker sequences -->
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
106 <param name="filename" type="data" format="fastq" label="Roche 454 reads file" help="FASTQ format" />
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
107 </when>
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
108 </conditional>
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
109 <!-- Illumina -->
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
110 <conditional name="condIllumina">
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
111 <param name="use" type="select" label="Solexa/Illumina reads?">
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
112 <option value="false">No</option>
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
113 <option value="true">Yes</option>
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
114 </param>
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
115 <when value="false" />
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
116 <when value="true">
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
117 <param name="filename" type="data" format="fastq" label="Solexa/Illumina reads file" help="FASTQ format" />
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
118 </when>
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
119 </conditional>
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
120 <!-- Ion Torrent -->
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
121 <conditional name="condIonTorrent">
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
122 <param name="use" type="select" label="Ion Torrent reads?">
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
123 <option value="false">No</option>
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
124 <option value="true">Yes</option>
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
125 </param>
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
126 <when value="false" />
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
127 <when value="true">
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
128 <!-- TODO? Support SFF files directly, e.g. with sff_extract -->
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
129 <param name="filename" type="data" format="fastq" label="Ion Torrent reads file" help="FASTQ format" />
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
130 </when>
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
131 </conditional>
6
1e49ca6731cd Uploaded v0.0.7 take 4, declare package dependency in main tool XML.
peterjc
parents: 3
diff changeset
132 </inputs>
1e49ca6731cd Uploaded v0.0.7 take 4, declare package dependency in main tool XML.
peterjc
parents: 3
diff changeset
133 <outputs>
1e49ca6731cd Uploaded v0.0.7 take 4, declare package dependency in main tool XML.
peterjc
parents: 3
diff changeset
134 <data name="out_fasta" format="fasta" label="MIRA contigs (FASTA)" />
1e49ca6731cd Uploaded v0.0.7 take 4, declare package dependency in main tool XML.
peterjc
parents: 3
diff changeset
135 <data name="out_qual" format="qual454" label="MIRA contigs (QUAL)" />
1e49ca6731cd Uploaded v0.0.7 take 4, declare package dependency in main tool XML.
peterjc
parents: 3
diff changeset
136 <data name="out_caf" format="txt" label="MIRA contigs (CAF)" />
1e49ca6731cd Uploaded v0.0.7 take 4, declare package dependency in main tool XML.
peterjc
parents: 3
diff changeset
137 <data name="out_ace" format="txt" label="MIRA contigs (ACE)" />
1e49ca6731cd Uploaded v0.0.7 take 4, declare package dependency in main tool XML.
peterjc
parents: 3
diff changeset
138 <data name="out_wig" format="wig" label="MIRA coverage (Wiggle)" />
1e49ca6731cd Uploaded v0.0.7 take 4, declare package dependency in main tool XML.
peterjc
parents: 3
diff changeset
139 <data name="out_log" format="txt" label="MIRA log" />
1e49ca6731cd Uploaded v0.0.7 take 4, declare package dependency in main tool XML.
peterjc
parents: 3
diff changeset
140 </outputs>
1e49ca6731cd Uploaded v0.0.7 take 4, declare package dependency in main tool XML.
peterjc
parents: 3
diff changeset
141 <tests>
1e49ca6731cd Uploaded v0.0.7 take 4, declare package dependency in main tool XML.
peterjc
parents: 3
diff changeset
142 </tests>
1e49ca6731cd Uploaded v0.0.7 take 4, declare package dependency in main tool XML.
peterjc
parents: 3
diff changeset
143 <help>
3
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
144
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
145 **What it does**
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
146
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
147 Runs MIRA v3.4, collects the output, and throws away all the temporary files.
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
148
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
149 **Citation**
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
150
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
151 If you use this tool in scientific work leading to a publication, please cite:
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
152
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
153 Chevreux et al. (1999) Genome Sequence Assembly Using Trace Signals and Additional Sequence Information Computer Science and Biology: Proceedings of the German Conference on Bioinformatics (GCB) 99, pp. 45-56.
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
154
6
1e49ca6731cd Uploaded v0.0.7 take 4, declare package dependency in main tool XML.
peterjc
parents: 3
diff changeset
155 </help>
3
c1c7d6f726b0 Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff changeset
156 </tool>