comparison bam_stat.xml @ 1:cd2daa987b69 draft default tip

planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/rseqc commit 2400cce6e3918648fda8f2a8d8485ab251a58827
author lparsons
date Tue, 07 Jul 2015 14:14:04 -0400
parents 306127635959
children
comparison
equal deleted inserted replaced
0:306127635959 1:cd2daa987b69
15 <expand macro="stdio" /> 15 <expand macro="stdio" />
16 16
17 <version_command><![CDATA[bam_stat.py --version]]></version_command> 17 <version_command><![CDATA[bam_stat.py --version]]></version_command>
18 18
19 <command><![CDATA[ 19 <command><![CDATA[
20 bam_stat.py -i $input -q $mapqual 2> $output 20 bam_stat.py -i $input -q $mapq 2> $output
21 ]]> 21 ]]>
22 </command> 22 </command>
23 23
24 <inputs> 24 <inputs>
25 <param name="input" type="data" label="Input .bam/.sam File" format="bam,sam" /> 25 <param name="input" type="data" label="Input .bam File" format="bam" help="(--input-file)"/>
26 <param label="Minimum mapping quality (default=30" type="integer" value="30" name="mapqual" /> 26 <param name="mapq" value="30" type="integer" label="Minimum mapping quality for an alignment to be called 'uniquly mapped'" help="(--mapq)" />
27 </inputs> 27 </inputs>
28 28
29 <outputs> 29 <outputs>
30 <data format="txt" name="output" /> 30 <data format="txt" name="output" />
31 </outputs> 31 </outputs>
40 <help><![CDATA[ 40 <help><![CDATA[
41 bam_stat.py 41 bam_stat.py
42 +++++++++++ 42 +++++++++++
43 43
44 This program is used to calculate reads mapping statistics from provided BAM 44 This program is used to calculate reads mapping statistics from provided BAM
45 file. This script determines "uniquely mapped reads" from `mapping quality`_, 45 file. This script determines "uniquely mapped reads" from `mapping quality
46 <http://genome.sph.umich.edu/wiki/Mapping_Quality_Scores>`_,
46 which quality the probability that a read is misplaced (Do NOT confused with 47 which quality the probability that a read is misplaced (Do NOT confused with
47 sequence quality, sequence quality measures the probability that a base-calling 48 sequence quality, sequence quality measures the probability that a base-calling
48 was wrong) . 49 was wrong) .
49 50
50 Inputs 51 Inputs
52 53
53 Input BAM/SAM file 54 Input BAM/SAM file
54 Alignment file in BAM/SAM format. 55 Alignment file in BAM/SAM format.
55 56
56 Minimum mapping quality 57 Minimum mapping quality
57 Minimum mapping quality for an alignment to be called “uniquely mapped” (default=30) 58 Minimum mapping quality for an alignment to be called "uniquely mapped" (default=30)
58 59
59 Output 60 Output
60 ++++++++++++++ 61 ++++++++++++++
61 62
62 - Total Reads (Total records) = {Multiple mapped reads} + {Uniquely mapped} 63 - Total Reads (Total records) = {Multiple mapped reads} + {Uniquely mapped}