Mercurial > repos > ebi-gxa > scmap_select_features
view scmap_select_features.xml @ 0:22b605f49f5f 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:57:48 -0400 |
parents | |
children | 953c7ff4069e |
line wrap: on
line source
<tool id="scmap_select_features" name="scmap select features" version="@TOOL_VERSION@+galaxy0" python_template_version="3.5"> <description>finds the most informative features (genes/transcripts) for projection.</description> <macros> <import>scmap_macros.xml</import> </macros> <expand macro="requirements" /> <command detect_errors="exit_code"><![CDATA[ scmap-select-features.R --input-object-file '$input_single_cell_experiment' --n-features '$n_features' --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" /> <param name="n_features" type="integer" label="Number of features" value="500" help="Number of features to be selected" /> </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="test_sce.rds" ftype="rdata"/> <output name="output_single_cell_experiment" file="select_features.rds"/> <output name="plot" file="select_features.png"/> </test> </tests> <help><![CDATA[ @HELP@ @VERSION_HISTORY@ ]]></help> <expand macro="citations" /> </tool>