comparison SMART/galaxy/mapperAnalyzer.xml @ 31:0ab839023fe4

Uploaded
author m-zytnicki
date Tue, 30 Apr 2013 14:33:21 -0400
parents 94ab73e8a190
children
comparison
equal deleted inserted replaced
30:5677346472b5 31:0ab839023fe4
1 <tool id="mapperAnalyzer" name="mapper analyzer"> 1 <tool id="mapperAnalyzer" name="mapper analyzer">
2 <description>Read the output of an aligner, print statistics and possibly translate into GFF, BED or GBrowse formats. </description> 2 <description>Read the output of an aligner, print statistics and possibly translate into BED or GBrowse formats. </description>
3 <requirements>
4 <requirement type="set_environment">PYTHONPATH</requirement>
5 </requirements>
6 <command interpreter="python"> 3 <command interpreter="python">
7 ../Java/Python/mapperAnalyzer.py -i $formatType.inputFileName1 4 ../Java/Python/mapperAnalyzer.py -i $formatType.inputFileName1
8 #if $formatType.FormatInputFileName1 == 'bed': 5 #if $formatType.FormatInputFileName1 == 'bed':
9 -f bed 6 -f bed
10 #elif $formatType.FormatInputFileName1 == 'gff3': 7 #elif $formatType.FormatInputFileName1 == 'gff3':
89 </when> 86 </when>
90 <when value="fastq"> 87 <when value="fastq">
91 <param name="inputFileName2" format="fastq" type="data" label="Reference sequence File Format"/> 88 <param name="inputFileName2" format="fastq" type="data" label="Reference sequence File Format"/>
92 </when> 89 </when>
93 </conditional> 90 </conditional>
91
94 92
95 <conditional name="optionnumber"> 93 <conditional name="optionnumber">
96 <param name="number" type="select" label="max. number of occurrences of a sequence"> 94 <param name="number" type="select" label="max. number of occurrences of a sequence">
97 <option value="Yes">Yes</option> 95 <option value="Yes">Yes</option>
98 <option value="No" selected="true">No</option> 96 <option value="No" selected="true">No</option>
180 <param name="remove" type="boolean" truevalue="-x" falsevalue="" checked="false" label="remove transcripts when exons are short"/> 178 <param name="remove" type="boolean" truevalue="-x" falsevalue="" checked="false" label="remove transcripts when exons are short"/>
181 <param name="remain" type="boolean" truevalue="-r" falsevalue="" checked="false" label="print the unmatched sequences "/> 179 <param name="remain" type="boolean" truevalue="-r" falsevalue="" checked="false" label="print the unmatched sequences "/>
182 </inputs> 180 </inputs>
183 181
184 <outputs> 182 <outputs>
185 <data name="outputFileGFF" format="gff3" label="[mapper analyzer] output file"/> 183 <data name="outputFileGFF" format="gff3" label="[mapperAnalyzer] out file"/>
186 </outputs> 184 </outputs>
187 185
188 <help>
189 Maybe the first program you may use. It reads a set of mapping given by the tool you have used to map your data on the reference genome and translate it to a set of genomic coordinates. You also have the possibility to extract only those that you are interested in (few matches in the genome, few errors in the mapping, etc.). You can also select those reads which map less than a given of times in the genome. Moreover, you can output the data in various different formats, which you can use to visualize them *via* UCSC genome browser or GBrowse. Unmatched reads can be written in an other file, in case you would like to try to map them with another tool (may sometimes work!).
190
191 You can filter your data according to:
192
193 - number of errors in the mapping
194
195 - number of occurrences of the mapping in the genome
196
197 - size of the read mapped
198
199 - number of gaps in the mapping
200
201 The script needs an input file (your mapped reads) together with its format and the read sequences file together with its format (FASTA or FASTQ). If you want, you can also append the results of this script to another GFF3 file. This is useful when the GFF3 file is the result of the mapping using another tool.
202
203 By default, any gap in the alignment to the reference sequence is treated like an exon. You can decide to remove this feature by merging short introns (actually, gaps).
204 </help>
205 </tool> 186 </tool>