Mercurial > repos > bgruening > deeptools_plot_pca
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/plotPCA.xml Mon Jan 25 20:24:44 2016 -0500 @@ -0,0 +1,47 @@ +<tool id="deeptools_plot_pca" name="plotPCA" version="@WRAPPER_VERSION@.0"> + <description>generate a principal component analysis (PCA) plot from multiBamSummary or multiBigwigSummary output</description> + <macros> + <token name="@BINARY@">plotPCA</token> + <import>deepTools_macros.xml</import> + </macros> + <expand macro="requirements"/> + <command> +<![CDATA[ + @BINARY@ + --corData "$corData" + --plotTitle "$plotTitle" + --plotFile "$outFileName" + --plotFileFormat "$outFileFormat" +]]> + </command> + <inputs> + <param name="corData" format="deeptools_coverage_matrix" type="data" label="Matrix file from the multiBamSummary or multiBigwigSummary tools"/> + <expand macro="input_image_file_format" /> + <expand macro="plotTitle" /> + </inputs> + <outputs> + <expand macro="output_image_file_format_not_nested" /> + </outputs> + <tests> + <test> + <param name="corData" value="multiBamSummary_result2.npz" ftype="deeptools_coverage_matrix" /> + <param name="plotTitle" value="Test Plot" /> + <param name="outFileFormat" value="png" /> + <output name="outFileName" file="plotPCA_result1.png" ftpye="png" compare="sim_size" delta="100" /> + </test> + </tests> + <help> +<![CDATA[ + +**What it does** + +Tool for generating a principal component analysis (PCA) +plot from multiBamSummary or multiBigwigSummary output. + +----- + +@REFERENCES@ +]]> + </help> + <expand macro="citations" /> +</tool>