comparison clipping_profile.xml @ 51:09846d5169fa 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:23:21 -0400
parents 6b33e31bda10
children dbedfc5f5a3c
comparison
equal deleted inserted replaced
50:f242ee103277 51:09846d5169fa
1 <tool id="rseqc_clipping_profile" name="Clipping Profile" version="2.4galaxy1"> 1 <tool id="rseqc_clipping_profile" name="Clipping Profile" version="@WRAPPER_VERSION@">
2 <description> 2 <description>
3 estimates clipping profile of RNA-seq reads from BAM or SAM file 3 estimates clipping profile of RNA-seq reads from BAM or SAM file
4 </description> 4 </description>
5 5
6 <macros> 6 <macros>
7 <import>rseqc_macros.xml</import> 7 <import>rseqc_macros.xml</import>
8 </macros> 8 </macros>
9 9
10 <requirements> 10 <expand macro="requirements" />
11 <expand macro="requirement_package_r" />
12 <expand macro="requirement_package_numpy" />
13 <expand macro="requirement_package_rseqc" />
14 </requirements>
15 11
16 <expand macro="stdio" /> 12 <expand macro="stdio" />
17 13
18 <version_command><![CDATA[clipping_profile.py --version]]></version_command> 14 <version_command><![CDATA[clipping_profile.py --version]]></version_command>
19 15
20 <command><![CDATA[ 16 <command><![CDATA[
21 clipping_profile.py -i $input -o output 17 clipping_profile.py -i '${input}' -o output -q ${mapq} -s "${layout}"
22 ]]> 18 ]]>
23 </command> 19 </command>
24 20
25 <inputs> 21 <inputs>
26 <param name="input" type="data" label="Input .bam File" format="bam" help="(--input-file)"/> 22 <expand macro="bam_param" />
23 <expand macro="mapq_param" />
24 <expand macro="layout_param" />
25 <expand macro="rscript_output_param" />
27 </inputs> 26 </inputs>
28 27
29 <outputs> 28 <outputs>
30 <data format="pdf" name="outputpdf" from_work_dir="output.clipping_profile.pdf" /> 29 <expand macro="pdf_output_data" filename="output.clipping_profile.pdf" />
31 <data format="xls" name="outputxls" from_work_dir="output.clipping_profile.xls" /> 30 <expand macro="xls_output_data" filename="output.clipping_profile.xls" />
32 <data format="txt" name="outputr" from_work_dir="output.clipping_profile.r" /> 31 <expand macro="rscript_output_data" filename="output.clipping_profile.r" />
33 </outputs> 32 </outputs>
34 33
35 <tests> 34 <tests>
36 <test> 35 <test>
37 <param name="input" value="pairend_strandspecific_51mer_hg19_chr1_1-100000.bam"/> 36 <param name="input" value="pairend_strandspecific_51mer_hg19_chr1_1-100000.bam" />
38 <output name="outputpdf" file="output.clipping_profile.pdf"/> 37 <output name="outputpdf" file="output.clipping_profile.pdf" compare="sim_size" />
39 <output name="outputxls" file="output.clipping_profile.xls"/> 38 <output name="outputxls" file="output.clipping_profile.xls" />
40 <output name="outputr" file="output.clipping_profile.r"/> 39 </test>
40 <test>
41 <param name="input" value="pairend_strandspecific_51mer_hg19_chr1_1-100000.bam" />
42 <param name="rscript_output" value="true" />
43 <output name="outputpdf" file="output.clipping_profile.pdf" compare="sim_size" />
44 <output name="outputxls" file="output.clipping_profile.xls" />
45 <output name="outputr" file="output.clipping_profile.r" />
41 </test> 46 </test>
42 </tests> 47 </tests>
43 48
44 <help><![CDATA[ 49 <help><![CDATA[
45 clipping_profile.py 50 clipping_profile.py
51 56
52 Inputs 57 Inputs
53 ++++++++++++++ 58 ++++++++++++++
54 59
55 Input BAM/SAM file 60 Input BAM/SAM file
56 Alignment file in BAM/SAM format. 61 Alignment file in BAM/SAM format.
57 62
63 Minimum mapping quality
64 Minimum mapping quality for an alignment to be considered as "uniquely
65 mapped". default=30
66
67 Sequencing layout
68 Denotes whether the sequecing was single-end (SE) or paired-end (PE).
58 69
59 Sample Output 70 Sample Output
60 ++++++++++++++ 71 ++++++++++++++
61 72
62 .. image:: http://rseqc.sourceforge.net/_images/clipping_good.png 73 .. image:: $PATH_TO_IMAGES/clipping_good.png
63 :height: 600 px 74 :height: 600 px
64 :width: 600 px 75 :width: 600 px
65 :scale: 80 % 76 :scale: 80 %
66 77
67 ----- 78 @ABOUT@
68 79
69 About RSeQC
70 +++++++++++
71
72 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.
73
74 The RSeQC package is licensed under the GNU GPL v3 license.
75
76 .. image:: http://rseqc.sourceforge.net/_static/logo.png
77
78 .. _RSeQC: http://rseqc.sourceforge.net/
79 ]]> 80 ]]>
80 </help> 81 </help>
81 82
82 <expand macro="citations" /> 83 <expand macro="citations" />
83 84