Mercurial > repos > peterjc > mira_assembler
annotate tools/mira_3_4/mira.xml @ 3:c1c7d6f726b0 draft
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
author | peterjc |
---|---|
date | Wed, 24 Apr 2013 12:08:51 -0400 |
parents | |
children | 1e49ca6731cd |
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> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
3 <version_command interpreter="python">mira.py -v</version_command> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
4 <command interpreter="python">mira.py mira $out_fasta $out_qual $out_ace $out_caf $out_wig $out_log |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
5 ##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
|
6 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
|
7 |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
8 ##Input files |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
9 #if $condBackbone.use == "true": |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
10 ## 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
|
11 -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
|
12 #end if |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
13 #if $condSanger.use == "true": |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
14 SANGER_SETTINGS |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
15 ## 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
|
16 ## 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
|
17 -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
|
18 #end if |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
19 #if $condRoche.use == "true": |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
20 454_SETTINGS |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
21 ## 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
|
22 ## 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
|
23 -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
|
24 #end if |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
25 #if $condIllumina.use == "true": |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
26 SOLEXA_SETTINGS |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
27 ## 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
|
28 -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
|
29 ##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
|
30 #end if |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
31 #if $condIonTorrent.use == "true": |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
32 IONTOR_SETTINGS |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
33 ## 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
|
34 ## 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
|
35 -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
|
36 #end if |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
37 |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
38 ##Output files |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
39 COMMON_SETTINGS |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
40 |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
41 ##ignore warnings about long read names |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
42 -MI:somrnl=0 |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
43 |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
44 ##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
|
45 ##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
|
46 -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
|
47 |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
48 ##remove_rollover_tmps, remove_tmp_directory |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
49 -OUT:rrot=1:rtd=1 |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
50 |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
51 ##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
|
52 -DI:trt=/tmp |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
53 |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
54 </command> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
55 <inputs> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
56 <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
|
57 <option value="denovo">De novo</option> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
58 <option value="mapping">Mapping</option> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
59 </param> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
60 <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
|
61 <option value="genome">Genome</option> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
62 <option value="est">EST (transcriptome)</option> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
63 </param> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
64 <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
|
65 <option value="accurate">Accurate</option> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
66 <option value="normal">Normal (deprecated)</option> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
67 <option value="draft">Draft</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 <!-- Backbone --> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
70 <conditional name="condBackbone"> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
71 <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
|
72 <option value="false">No</option> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
73 <option value="true">Yes</option> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
74 </param> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
75 <when value="false" /> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
76 <when value="true"> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
77 <!-- 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
|
78 <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
|
79 </when> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
80 </conditional> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
81 <!-- Sanger --> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
82 <conditional name="condSanger"> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
83 <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
|
84 <option value="false">No</option> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
85 <option value="true">Yes</option> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
86 </param> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
87 <when value="false" /> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
88 <when value="true"> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
89 <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
|
90 </when> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
91 </conditional> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
92 <!-- Roche 454 --> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
93 <conditional name="condRoche"> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
94 <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
|
95 <option value="false">No</option> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
96 <option value="true">Yes</option> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
97 </param> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
98 <when value="false" /> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
99 <when value="true"> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
100 <!-- 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
|
101 <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
|
102 </when> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
103 </conditional> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
104 <!-- Illumina --> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
105 <conditional name="condIllumina"> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
106 <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
|
107 <option value="false">No</option> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
108 <option value="true">Yes</option> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
109 </param> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
110 <when value="false" /> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
111 <when value="true"> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
112 <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
|
113 </when> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
114 </conditional> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
115 <!-- Ion Torrent --> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
116 <conditional name="condIonTorrent"> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
117 <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
|
118 <option value="false">No</option> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
119 <option value="true">Yes</option> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
120 </param> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
121 <when value="false" /> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
122 <when value="true"> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
123 <!-- 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
|
124 <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
|
125 </when> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
126 </conditional> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
127 </inputs> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
128 <outputs> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
129 <data name="out_fasta" format="fasta" label="MIRA contigs (FASTA)" /> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
130 <data name="out_qual" format="qual454" label="MIRA contigs (QUAL)" /> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
131 <data name="out_caf" format="txt" label="MIRA contigs (CAF)" /> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
132 <data name="out_ace" format="txt" label="MIRA contigs (ACE)" /> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
133 <data name="out_wig" format="wig" label="MIRA coverage (Wiggle)" /> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
134 <data name="out_log" format="txt" label="MIRA log" /> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
135 </outputs> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
136 <tests> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
137 </tests> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
138 <requirements> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
139 <requirement type="python-module">Bio</requirement> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
140 <requirement type="binary">mira</requirement> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
141 </requirements> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
142 <help> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
143 |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
144 **What it does** |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
145 |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
146 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
|
147 |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
148 **Citation** |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
149 |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
150 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
|
151 |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
152 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
|
153 |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
154 </help> |
c1c7d6f726b0
Uploaded v0.0.7 take 1, attempts automated installation of the MIRA binary.
peterjc
parents:
diff
changeset
|
155 </tool> |