Mercurial > repos > bgruening > deeptools_plot_pca
comparison plotPCA.xml @ 0:7fb0a96e74c1 draft
planemo upload for repository https://github.com/fidelram/deepTools/tree/master/galaxy/wrapper/ commit 0a9265a12a303b54cdaa974e82e87c2ac60962ee-dirty
author | bgruening |
---|---|
date | Mon, 25 Jan 2016 20:24:44 -0500 |
parents | |
children | 47bf2e1f065b |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:7fb0a96e74c1 |
---|---|
1 <tool id="deeptools_plot_pca" name="plotPCA" version="@WRAPPER_VERSION@.0"> | |
2 <description>generate a principal component analysis (PCA) plot from multiBamSummary or multiBigwigSummary output</description> | |
3 <macros> | |
4 <token name="@BINARY@">plotPCA</token> | |
5 <import>deepTools_macros.xml</import> | |
6 </macros> | |
7 <expand macro="requirements"/> | |
8 <command> | |
9 <![CDATA[ | |
10 @BINARY@ | |
11 --corData "$corData" | |
12 --plotTitle "$plotTitle" | |
13 --plotFile "$outFileName" | |
14 --plotFileFormat "$outFileFormat" | |
15 ]]> | |
16 </command> | |
17 <inputs> | |
18 <param name="corData" format="deeptools_coverage_matrix" type="data" label="Matrix file from the multiBamSummary or multiBigwigSummary tools"/> | |
19 <expand macro="input_image_file_format" /> | |
20 <expand macro="plotTitle" /> | |
21 </inputs> | |
22 <outputs> | |
23 <expand macro="output_image_file_format_not_nested" /> | |
24 </outputs> | |
25 <tests> | |
26 <test> | |
27 <param name="corData" value="multiBamSummary_result2.npz" ftype="deeptools_coverage_matrix" /> | |
28 <param name="plotTitle" value="Test Plot" /> | |
29 <param name="outFileFormat" value="png" /> | |
30 <output name="outFileName" file="plotPCA_result1.png" ftpye="png" compare="sim_size" delta="100" /> | |
31 </test> | |
32 </tests> | |
33 <help> | |
34 <![CDATA[ | |
35 | |
36 **What it does** | |
37 | |
38 Tool for generating a principal component analysis (PCA) | |
39 plot from multiBamSummary or multiBigwigSummary output. | |
40 | |
41 ----- | |
42 | |
43 @REFERENCES@ | |
44 ]]> | |
45 </help> | |
46 <expand macro="citations" /> | |
47 </tool> |