comparison scmap_select_features.xml @ 0:89ebe4961a3d draft

"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 542b6e6848acedbbedb6fa2d4b44c8d476597cdd"
author ebi-gxa
date Fri, 03 Apr 2020 10:31:10 +0000
parents
children 853104062dee
comparison
equal deleted inserted replaced
-1:000000000000 0:89ebe4961a3d
1 <tool id="scmap_select_features" name="scmap select features" version="@TOOL_VERSION@+galaxy1" profile="@PROFILE@">
2 <description>finds the most informative features (genes/transcripts) for projection.</description>
3 <macros>
4 <import>scmap_macros.xml</import>
5 </macros>
6 <expand macro="requirements" />
7 <command detect_errors="exit_code"><![CDATA[
8 scmap-preprocess-sce.R --input-object "${input_single_cell_experiment}" --output-sce-object "${input_single_cell_experiment}.preprocessed" && scmap-select-features.R --input-object-file "${input_single_cell_experiment}.preprocessed" --n-features '$n_features' --output-object-file '$output_single_cell_experiment' --output-plot-file '$plot'
9 ]]></command>
10 <inputs>
11 <param type="data" name="input_single_cell_experiment" label="SingleCellExperiment object" format="rdata" help="File with serialized SingleCellExperiment object" />
12 <param name="n_features" type="integer" label="Number of features" value="500" help="Number of features to be selected" />
13 </inputs>
14 <outputs>
15 <data name="output_single_cell_experiment" format="rdata" />
16 <data name="plot" format="png" />
17 </outputs>
18 <tests>
19 <test>
20 <param name="input_single_cell_experiment" value="test_sce.rds" ftype="rdata"/>
21 <output name="output_single_cell_experiment" file="select_features.rds" compare="sim_size"/>
22 <output name="plot" file="select_features.png" compare="sim_size"/>
23 </test>
24 </tests>
25 <help><![CDATA[
26 @HELP@
27
28 @VERSION_HISTORY@
29 ]]></help>
30 <expand macro="citations" />
31 </tool>