Mercurial > repos > ebi-gxa > scmap_index_cluster
diff scmap_index_cluster.xml @ 0:6b24ebf5b7fb draft
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 815e36252846236124957052433572f1c1247114"
author | ebi-gxa |
---|---|
date | Mon, 16 Sep 2019 09:56:06 -0400 |
parents | |
children | e6d99b0652ec |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/scmap_index_cluster.xml Mon Sep 16 09:56:06 2019 -0400 @@ -0,0 +1,31 @@ +<tool id="scmap_index_cluster" name="scmap index clusters" version="@TOOL_VERSION@+galaxy0" python_template_version="3.5"> + <description>calculates centroids of each cell type and merges them into a single table</description> + <macros> + <import>scmap_macros.xml</import> + </macros> + <expand macro="requirements" /> + <command detect_errors="exit_code"><![CDATA[ + scmap-index-cluster.R --input-object-file '$input_single_cell_experiment' --cluster-col '$cluster_col' --output-object-file '$output_single_cell_experiment' --output-plot-file '$plot' + ]]></command> + <inputs> + <param type="data" name="input_single_cell_experiment" label="SingleCellExperiment object" format="rdata" help="File with serialized SingleCellExperiment object as produced by 'scmap select features'" /> + <param name="cluster_col" type="text" label="Cluster column" value="cell_type1" help="Column name in the 'colData' slot of the SingleCellExperiment object containing the cell classification information." /> + </inputs> + <outputs> + <data name="output_single_cell_experiment" format="rdata" /> + <data name="plot" format="png" /> + </outputs> + <tests> + <test> + <param name="input_single_cell_experiment" value="select_features.rds" ftype="rdata"/> + <output name="output_single_cell_experiment" file="index_cluster.rds"/> + <output name="plot" file="index_cluster.png"/> + </test> + </tests> + <help><![CDATA[ + @HELP@ + + @VERSION_HISTORY@ + ]]></help> + <expand macro="citations" /> +</tool>