Mercurial > repos > ebi-gxa > scpred_eigen_decompose
comparison scpred_eigen_decomp.xml @ 0:c6fd7cbaf247 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:25:22 -0400 |
parents | |
children | 3867289e6c1a |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:c6fd7cbaf247 |
---|---|
1 <tool id="scpred_eigen_decompose" name="Scpred eigen-decompose" version="@TOOL_VERSION@+galaxy0" profile="@PROFILE@"> | |
2 <description>Perform matrix eigen-decomposition; initialize object of scPred class</description> | |
3 <macros> | |
4 <import>scpred_macros.xml</import> | |
5 </macros> | |
6 <expand macro="requirements" /> | |
7 <command detect_errors="exit_code"><![CDATA[ | |
8 scpred_eigen_decomp.R --training-matrix "${training_matrix}" --log-transform "${log_transform}" --training-labels "${training_labels}" --principal-comps "${principal_components}" --output-path "${output_object_path}" ]]></command> | |
9 <inputs> | |
10 <param type="data" name="training_matrix" label="Training matrix" format="rdata" help="Training matrix obtained from train/test split step" /> | |
11 <param type="boolean" name="log_transform" label="log-transform" checked="True" help="Should log-transform be performed on training data?" /> | |
12 <param type="data" name="training_labels" label="training labels file" format="txt" help="Path to training labels in text format" /> | |
13 <param type="integer" name="principal_components" label="Number of pincipal components" value="10" help="Number of principal components" /> | |
14 </inputs> | |
15 <outputs> | |
16 <data name="output_object_path" format="rdata" /> | |
17 </outputs> | |
18 <tests> | |
19 <test> | |
20 <param name="training_matrix" value="train_matrix.mtx" /> | |
21 <param name="training_labels" value="train_metadata.txt" /> | |
22 <output name="output_object_path" file="scPred_object.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> |