comparison clipping_profile.xml @ 45:eb339c5849bb draft

Reupload, toolshed removed all files of previous version.
author lparsons
date Fri, 26 Sep 2014 15:04:18 -0400
parents
children 6b33e31bda10
comparison
equal deleted inserted replaced
44:20e0b2dd7882 45:eb339c5849bb
1 <tool id="rseqc_clipping_profile" name="Clipping Profile" version="2.4">
2 <description>
3 estimates clipping profile of RNA-seq reads from BAM or SAM file
4 </description>
5 <requirements>
6 <requirement type="package" version="3.0.3">R</requirement>
7 <requirement type="package" version="1.7.1">numpy</requirement>
8 <requirement type="package" version="2.4">rseqc</requirement>
9 </requirements>
10 <command>
11 clipping_profile.py -i $input -o output
12 </command>
13 <stdio>
14 <exit_code range="1:" level="fatal" description="An error occured during execution, see stderr and stdout for more information" />
15 <regex match="[Ee]rror" source="both" description="An error occured during execution, see stderr and stdout for more information" />
16 </stdio>
17 <inputs>
18 <param name="input" type="data" label="Input .bam/.sam File" format="bam,sam" />
19 </inputs>
20 <outputs>
21 <data format="xls" name="outputxls" from_work_dir="output.clipping_profile.xls" />
22 <data format="txt" name="outputr" from_work_dir="output.clipping_profile.r" />
23 </outputs>
24 <help>
25 clipping_profile.py
26 +++++++++++++++++++
27
28 This program is used to estimate clipping profile of RNA-seq reads from BAM or SAM file.
29 Note that to use this funciton, CIGAR strings within SAM/BAM file should have 'S' operation
30 (This means your reads aligner should support clipped mapping).
31
32 Inputs
33 ++++++++++++++
34
35 Input BAM/SAM file
36 Alignment file in BAM/SAM format.
37
38
39 Sample Output
40 ++++++++++++++
41
42 .. image:: http://rseqc.sourceforge.net/_images/clipping_good.png
43 :height: 600 px
44 :width: 600 px
45 :scale: 80 %
46
47 -----
48
49 About RSeQC
50 +++++++++++
51
52 The RSeQC_ package provides a number of useful modules that can comprehensively evaluate high throughput sequence data especially RNA-seq data. "Basic modules" quickly inspect sequence quality, nucleotide composition bias, PCR bias and GC bias, while "RNA-seq specific modules" investigate sequencing saturation status of both splicing junction detection and expression estimation, mapped reads clipping profile, mapped reads distribution, coverage uniformity over gene body, reproducibility, strand specificity and splice junction annotation.
53
54 The RSeQC package is licensed under the GNU GPL v3 license.
55
56 .. image:: http://rseqc.sourceforge.net/_static/logo.png
57
58 .. _RSeQC: http://rseqc.sourceforge.net/
59
60 </help>
61 </tool>