comparison read_GC.xml @ 1:f92b87abef3d

just xmls
author nilesh
date Thu, 18 Jul 2013 10:54:06 -0500
parents
children 71ed55a3515a
comparison
equal deleted inserted replaced
0:924eea225dd6 1:f92b87abef3d
1 <tool id="read_GC" name="Read GC">
2 <description>determines GC% and read count</description>
3 <requirements>
4 <requirement type="package" version="2.15.1">R</requirement>
5 <requirement type="package" version="2.3.7">rseqc</requirement>
6 </requirements>
7 <command interpreter="python"> read_GC.py -i $input -o output
8 </command>
9 <inputs>
10 <param name="input" type="data" format="bam,sam" label="input bam/sam file" />
11 </inputs>
12 <outputs>
13 <data format="xls" name="outputxls" from_work_dir="output.GC.xls"/>
14 <data format="r" name="outputr" from_work_dir="output.GC_plot.r" />
15 <data format="pdf" name="outputpdf" from_work_dir="output.GC_plot.pdf" />
16 </outputs>
17 <tests>
18 <test>
19 <param name="input" value="Pairend_nonStrandSpecific_36mer_Human_hg19.bam" />
20 <output name-"outputxls" file="Pairend_nonStrandSpecific_36mer_Human_hg19.bam" />
21 <output name="outputr" file="readgcout.GC_plot.r" />
22 <output name="outputpdf" file="readgcout.GC_plot.pdf" />
23 </test>
24 </tests>
25 <help>
26 .. image:: https://code.google.com/p/rseqc/logo?cct=1336721062
27
28 -----
29
30 About RSeQC
31 +++++++++++
32
33 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.
34
35 The RSeQC package is licensed under the GNU GPL v3 license.
36
37 Inputs
38 ++++++++++++++
39
40 Input BAM/SAM file
41 Alignment file in BAM/SAM format.
42
43 Output
44 ++++++++++++++
45
46 1. output.GC.xls: Two column, plain text file, first column is GC%, second column is read count
47 2. output.GC_plot.r: R script to generate pdf file.
48 3. output.GC_plot.pdf: graphical output generated from R script.
49
50 .. image:: http://dldcc-web.brc.bcm.edu/lilab/liguow/RSeQC/figure/read_gc.png
51
52 </help>
53 </tool>