diff geneBody_coverage2.xml @ 3:71ed55a3515a draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rseqc commit 37fb1988971807c6a072e1afd98eeea02329ee83
author iuc
date Tue, 14 Mar 2017 10:22:57 -0400
parents f92b87abef3d
children 017eaaf58e5e
line wrap: on
line diff
--- a/geneBody_coverage2.xml	Thu Jul 18 11:01:08 2013 -0500
+++ b/geneBody_coverage2.xml	Tue Mar 14 10:22:57 2017 -0400
@@ -1,43 +1,61 @@
-<tool id="geneBody_coverage" name="Gene Body Converage (Bigwig)">
-	<description>
-		Read coverage over gene body.
-	</description>
-	<requirements>
-		<requirement type="package" version="2.15.1">R</requirement>
-		<requirement type="package" version="2.3.7">rseqc</requirement>
-	</requirements>
-	<command interpreter="python">
-		geneBody_coverage2.py -i $input -r $refgene -o output
-	</command>
-	<inputs>
-		<param name="input" type="data" label="Input bigwig file" format="bigwig" />
-		<param name="refgene" type="data" label="Reference Genome" format="bed" />
-	</inputs>
-	<outputs>
-		<data name="outputpdf" format="pdf" from_work_dir="output.geneBodyCoverage.pdf" />
-		<data name="outputr" format="r" from_work_dir="output.geneBodyCoverage_plot.r" />
-		<data name="outputtxt" format="txt" from_work_dir="output.geneBodyCoverage.txt" />
-	</outputs>
-	<help>
-.. image:: https://code.google.com/p/rseqc/logo?cct=1336721062
+<tool id="rseqc_geneBody_coverage2" name="Gene Body Converage (Bigwig)" version="@WRAPPER_VERSION@">
+    <description>
+        Read coverage over gene body
+    </description>
+
+    <macros>
+        <import>rseqc_macros.xml</import>
+    </macros>
+
+    <expand macro="requirements" />
+
+    <expand macro="stdio" />
+
+    <version_command><![CDATA[geneBody_coverage2.py --version]]></version_command>
+
+    <command><![CDATA[
+        geneBody_coverage2.py -i '${input}' -r '${refgene}' -o output
+        ]]>
+    </command>
+
+    <inputs>
+        <param name="input" type="data" label="Input bigwig file" format="bigwig" />
+        <expand macro="refgene_param" />
+    </inputs>
 
------
+    <outputs>
+        <expand macro="pdf_output_data" filename="output.geneBodyCoverage.pdf" />
+        <data name="outputtxt" format="txt" from_work_dir="output.geneBodyCoverage.txt" label="${tool.name} on ${on_string} (text)" />
+        <expand macro="rscript_output_data" filename="output.geneBodyCoverage_plot.r" />
+    </outputs>
 
-About RSeQC
-+++++++++++
+    <tests>
+        <test>
+            <param name="input" value="pairend_strandspecific_51mer_hg19_chr1_1-100000.bigwig" />
+            <param name="refgene" value="hg19_RefSeq_chr1_1-100000.bed" />
+            <param name="rscript_output" value="true" />
+            <output name="outputpdf" file="output.geneBodyCoverage2.curves.pdf" compare="sim_size" />
+            <output name="outputr" file="output.geneBodyCoverage2.r" />
+            <output name="outputtxt" file="output.geneBodyCoverage2.txt" />
+        </test>
+    </tests>
 
-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.
+    <help><![CDATA[
+geneBody_coverage2.py
++++++++++++++++++++++
 
-The RSeQC package is licensed under the GNU GPL v3 license.
+Similar to geneBody_coverage.py. This module takes bigwig instead of BAM as input, and thus
+requires much less memory. The BigWig file could be arbitrarily large.
+
 
 Inputs
 ++++++++++++++
 
 Input BAM/SAM file
-	Alignment file in BAM/SAM format.
+    Alignment file in BAM/SAM format.
 
 Reference gene model
-	Gene Model in BED format.
+    Gene Model in BED format.
 
 
 Outputs
@@ -46,9 +64,16 @@
 Read coverage over gene body. This module is used to check if reads coverage is uniform and if there is any 5’/3’ bias. This module scales all transcripts to 100 nt and calculates the number of reads covering each nucleotide position. Finally, it generates a plot illustrating the coverage profile along the gene body. NOTE: this module requires lots of memory for large BAM files, because it load the entire BAM file into memory. We add another script "geneBody_coverage2.py" into v2.3.1 which takes bigwig (instead of BAM) as input. It only use 200M RAM, but users need to convert BAM into WIG, and then WIG into BigWig.
 
 Example output:
-	.. image:: http://dldcc-web.brc.bcm.edu/lilab/liguow/RSeQC/figure/geneBody_coverage.png
+    .. image:: $PATH_TO_IMAGES/geneBody_coverage.png
+        :height: 600 px
+        :width: 600 px
+        :scale: 80 %
 
+@ABOUT@
 
+]]>
+    </help>
 
-	</help>
-</tool>
\ No newline at end of file
+    <expand macro="citations" />
+
+</tool>