Mercurial > repos > ebi-gxa > scpred_get_feature_space
comparison scpred_get_feature_space.xml @ 0:db7ecc1aaf59 draft
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 6ea13bbd7294b94201a5d776307b3f0742847db1"
author | ebi-gxa |
---|---|
date | Wed, 08 Apr 2020 06:38:03 -0400 |
parents | |
children | 4a77d2091aec |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:db7ecc1aaf59 |
---|---|
1 <tool id='scpred_get_feature_space' name='ScPred feature space' version='@TOOL_VERSION@+galaxy0' profile="@PROFILE@"> | |
2 <description>Get feature space for training matrix</description> | |
3 <macros> | |
4 <import>scpred_macros.xml</import> | |
5 </macros> | |
6 <expand macro='requirements' /> | |
7 <command detect_errors='exit_code'><![CDATA[ | |
8 scpred_get_feature_space.R --input-object '${input_object}' --prediction-column '${prediction_column}' --explained-var-limit '${explained_var_limit}' --output-path '${output_obj_path}' --eigenvalue-plot-path '${eigenvalue_plot_path}']]></command> | |
9 <inputs> | |
10 <param type='data' name='input_object' label='Input SCE object' format='rdata' help='Input SCE object in .rds format' /> | |
11 <param type='text' name='prediction_column' label='Prediction column' help='Name of the metadata column that contains training labels' /> | |
12 <param type='float' name='explained_var_limit' label='Limit of explained variance' value="0.01" help='Threshold to filter principal components based on variance explained' /> | |
13 </inputs> | |
14 <outputs> | |
15 <data name='output_obj_path' format='rdata' /> | |
16 <data name='eigenvalue_plot_path' format='png' /> | |
17 </outputs> | |
18 <tests> | |
19 <test> | |
20 <param name="input_object" value="scPred_object.rds" /> | |
21 <param name="prediction_column" value="cell_type2" /> | |
22 <output name="output_obj_path" file="scPred_feat_space.rds" compare="sim_size" /> | |
23 </test> | |
24 </tests> | |
25 <help><![CDATA[ | |
26 @HELP@ | |
27 | |
28 @VERSION_HISTORY@ | |
29 ]]></help> | |
30 <expand macro='citations' /> | |
31 </tool> |