comparison geneBody_coverage2.xml @ 49:6b33e31bda10 draft

Uploaded tar based on https://github.com/lparsons/galaxy_tools/tree/master/tools/rseqc 1a3c419bc0ded7c40cb2bc3e7c87bfb01ddfeba2
author lparsons
date Thu, 16 Jul 2015 17:43:43 -0400
parents eb339c5849bb
children 09846d5169fa
comparison
equal deleted inserted replaced
48:2e6190c29c54 49:6b33e31bda10
1 <tool id="rseqc_geneBody_coverage2" name="Gene Body Converage (Bigwig)" version="2.4"> 1 <tool id="rseqc_geneBody_coverage2" name="Gene Body Converage (Bigwig)" version="2.4galaxy1">
2 <description> 2 <description>
3 Read coverage over gene body 3 Read coverage over gene body
4 </description> 4 </description>
5
6 <macros>
7 <import>rseqc_macros.xml</import>
8 </macros>
9
5 <requirements> 10 <requirements>
6 <requirement type="package" version="3.0.3">R</requirement> 11 <expand macro="requirement_package_r" />
7 <requirement type="package" version="1.7.1">numpy</requirement> 12 <expand macro="requirement_package_numpy" />
8 <requirement type="package" version="2.4">rseqc</requirement> 13 <expand macro="requirement_package_rseqc" />
9 </requirements> 14 </requirements>
10 <command> 15
16 <expand macro="stdio" />
17
18 <version_command><![CDATA[geneBody_coverage2.py --version]]></version_command>
19
20 <command><![CDATA[
11 geneBody_coverage2.py -i $input -r $refgene -o output 21 geneBody_coverage2.py -i $input -r $refgene -o output
22 ]]>
12 </command> 23 </command>
13 <stdio> 24
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> 25 <inputs>
18 <param name="input" type="data" label="Input bigwig file" format="bigwig" /> 26 <param name="input" type="data" label="Input bigwig file" format="bigwig" />
19 <param name="refgene" type="data" label="Reference Genome" format="bed" /> 27 <param name="refgene" type="data" label="Reference Genome" format="bed" />
20 </inputs> 28 </inputs>
29
21 <outputs> 30 <outputs>
22 <data name="outputpdf" format="pdf" from_work_dir="output.geneBodyCoverage.pdf" label="${tool.name} on ${on_string} (PDF)" /> 31 <data name="outputpdf" format="pdf" from_work_dir="output.geneBodyCoverage.pdf" label="${tool.name} on ${on_string} (PDF)" />
23 <data name="outputr" format="txt" from_work_dir="output.geneBodyCoverage_plot.r" label="${tool.name} on ${on_string} (R Script)" /> 32 <data name="outputr" format="txt" from_work_dir="output.geneBodyCoverage_plot.r" label="${tool.name} on ${on_string} (R Script)" />
24 <data name="outputtxt" format="txt" from_work_dir="output.geneBodyCoverage.txt" label="${tool.name} on ${on_string} (Text)" /> 33 <data name="outputtxt" format="txt" from_work_dir="output.geneBodyCoverage.txt" label="${tool.name} on ${on_string} (Text)" />
25 </outputs> 34 </outputs>
26 <help> 35
36 <!-- Unable to succefully run this script, it seems deprecated and should probably be dropped
37 <tests>
38 <test>
39 <param name="input" value="pairend_strandspecific_51mer_hg19_chr1_1-100000.bigwig"/>
40 <param name="refgene" value="hg19_RefSeq_chr1_1-100000.bed"/>
41 <output name="outputcurvespdf" file="output.geneBodyCoverage.curves.pdf"/>
42 <output name="outputr" file="output.geneBodyCoverage.r"/>
43 <output name="outputtxt" file="output.geneBodyCoverage.txt"/>
44 </test>
45 </tests>
46 -->
47
48 <help><![CDATA[
27 geneBody_coverage2.py 49 geneBody_coverage2.py
28 +++++++++++++++++++++ 50 +++++++++++++++++++++
29 51
30 Similar to geneBody_coverage.py. This module takes bigwig instead of BAM as input, and thus 52 Similar to geneBody_coverage.py. This module takes bigwig instead of BAM as input, and thus
31 requires much less memory. The BigWig file could be arbitrarily large. 53 requires much less memory. The BigWig file could be arbitrarily large.
48 70
49 Example output: 71 Example output:
50 .. image:: http://dldcc-web.brc.bcm.edu/lilab/liguow/RSeQC/figure/geneBody_coverage.png 72 .. image:: http://dldcc-web.brc.bcm.edu/lilab/liguow/RSeQC/figure/geneBody_coverage.png
51 :height: 600 px 73 :height: 600 px
52 :width: 600 px 74 :width: 600 px
53 :scale: 80 % 75 :scale: 80 %
54 76
55 ----- 77 -----
56 78
57 About RSeQC 79 About RSeQC
58 +++++++++++ 80 +++++++++++
59 81
60 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. 82 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.
61 83
62 The RSeQC package is licensed under the GNU GPL v3 license. 84 The RSeQC package is licensed under the GNU GPL v3 license.
63 85
64 .. image:: http://rseqc.sourceforge.net/_static/logo.png 86 .. image:: http://rseqc.sourceforge.net/_static/logo.png
65 87
66 .. _RSeQC: http://rseqc.sourceforge.net/ 88 .. _RSeQC: http://rseqc.sourceforge.net/
67 89
90 ]]>
91 </help>
68 92
93 <expand macro="citations" />
69 94
70 </help>
71 </tool> 95 </tool>