comparison tools/mira4/mira4_mapping.xml @ 5:ffefb87bd414 draft

Uploaded v0.0.1 preview 5, using MIRA 4.0 RC4, supports segment_placement (pairing type)
author peterjc
date Tue, 15 Oct 2013 12:07:34 -0400
parents df86ed992a1b
children 626d5cfd01aa
comparison
equal deleted inserted replaced
4:df86ed992a1b 5:ffefb87bd414
3 <requirements> 3 <requirements>
4 <requirement type="python-module">Bio</requirement> 4 <requirement type="python-module">Bio</requirement>
5 <requirement type="binary">mira</requirement> 5 <requirement type="binary">mira</requirement>
6 <requirement type="package" version="4.0">MIRA</requirement> 6 <requirement type="package" version="4.0">MIRA</requirement>
7 </requirements> 7 </requirements>
8 <version_command interpreter="python">mira4.py -v</version_command> 8 <version_command interpreter="python">mira4.py --version</version_command>
9 <command interpreter="python"> 9 <command interpreter="python">
10 mira4.py $manifest $out_maf $out_fasta $out_log 10 mira4.py $manifest $out_maf $out_fasta $out_log
11 </command> 11 </command>
12 <inputs> 12 <inputs>
13 <param name="job_type" type="select" label="Assembly type"> 13 <param name="job_type" type="select" label="Assembly type">
35 <option value="454">Roche 454</option> 35 <option value="454">Roche 454</option>
36 <option value="iontor">Ion Torrent</option> 36 <option value="iontor">Ion Torrent</option>
37 <option value="pcbiolq">PacBio low quality (raw)</option> 37 <option value="pcbiolq">PacBio low quality (raw)</option>
38 <option value="pcbiohq">PacBio high quality (corrected)</option> 38 <option value="pcbiohq">PacBio high quality (corrected)</option>
39 <option value="text">Synthetic reads (database entries, consensus sequences, artifical reads, etc)</option> 39 <option value="text">Synthetic reads (database entries, consensus sequences, artifical reads, etc)</option>
40 </param>
41 <param name="segment_placement" type="select" label="Pairing type (segment placing)">
42 <option value="">None (e.g. single end sequencing)</option>
43 <option value="FR">---&gt; &lt;--- (e.g. Sanger capillary or Solexa/Illumina paired-end library)</option>
44 <option value="RF">&lt;--- ---&gt; (e.g. Solexa/Illumina mate-pair library)</option>
45 <option value="SB">2---&gt; 1---&gt; (e.g. Roche 454 paired-end libraries or IonTorrent long-mate; see note)</option>
46 <option value="?">Unknown or not relevant (e.g. primer walking with Sanger capillary sequencing)</option>
40 </param> 47 </param>
41 <param name="filenames" type="data" format="fastq,mira" multiple="true" required="true" label="Read file(s)" 48 <param name="filenames" type="data" format="fastq,mira" multiple="true" required="true" label="Read file(s)"
42 help="Multiple files allowed, for example paired reads can be given as two files (MIRA looks at read names to identify pairs)." /> 49 help="Multiple files allowed, for example paired reads can be given as two files (MIRA looks at read names to identify pairs)." />
43 </repeat> 50 </repeat>
44 </inputs> 51 </inputs>
95 technology = ${rg.technology} 102 technology = ${rg.technology}
96 #if str($strain_setup)=="same" 103 #if str($strain_setup)=="same"
97 ##This is perhaps redundant as MIRA defaults to StrainX for the reads: 104 ##This is perhaps redundant as MIRA defaults to StrainX for the reads:
98 strain = StrainX 105 strain = StrainX
99 #end if 106 #end if
107 #if str($rg.segment_placement) != ""
108 ##Record the segment placement (if any)
109 segmentplacement = ${rg.segment_placement}
110 #end if
100 ##MIRA will accept multiple filenames on one data line, or multiple data lines 111 ##MIRA will accept multiple filenames on one data line, or multiple data lines
101 #for $f in $rg.filenames 112 #for $f in $rg.filenames
102 ##Must now map Galaxy datatypes to MIRA file types... 113 ##Must now map Galaxy datatypes to MIRA file types...
103 #if $f.ext.startswith("fastq") 114 #if $f.ext.startswith("fastq")
104 ##MIRA doesn't like fastqsanger etc, just plain old fastq: 115 ##MIRA doesn't like fastqsanger etc, just plain old fastq:
147 a range of platforms (Sanger capillary, Solexa/Illumina, Roche 454, Ion Torrent 158 a range of platforms (Sanger capillary, Solexa/Illumina, Roche 454, Ion Torrent
148 and also PacBio). 159 and also PacBio).
149 160
150 It is particularly suited to small genomes such as bacteria. 161 It is particularly suited to small genomes such as bacteria.
151 162
163 **Notes**
164
165 .. class:: warningmark
166
167 Note that the raw data for Roche 454 and Ion Torrent paired-end libraries
168 sequences a circularised fragment such that the raw data starts with the
169 end of the fragment, a linker, then the start of the fragment. This means
170 both the start and end are sequenced from the same strand, and thus should
171 be given to MIRA as orientation "2---&gt; 1---&gt;". However, in order to
172 use this data with traditional tools expecting Sanger capillary style
173 libraries which expect "---&gt; &lt;---" your FASTQ files may have been
174 pre-processed to mimic this by reverse complementing one of the pair.
175
152 **Citation** 176 **Citation**
153 177
154 If you use this Galaxy tool in work leading to a scientific publication please 178 If you use this Galaxy tool in work leading to a scientific publication please
155 cite the following papers: 179 cite the following papers:
156 180