comparison scpred_train_test_split.xml @ 2:a6d66c9953ed draft

"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 59503a4ae6f53a7782336df4f82fbd755cfb2933"
author ebi-gxa
date Wed, 29 Apr 2020 12:43:32 -0400
parents 8ec19f24fcf3
children 7aec34208f30
comparison
equal deleted inserted replaced
1:148fae20fe64 2:a6d66c9953ed
1 <tool id="scpred_traint_test_split" name="Scpred train-test split" version="@TOOL_VERSION@+galaxy0" profile="@PROFILE@"> 1 <tool id="scpred_traint_test_split" name="Scpred train-test split" version="@TOOL_VERSION@+galaxy1" profile="@PROFILE@">
2 <description>CPM normalise and partition into train/test data</description> 2 <description>CPM normalise and partition into train/test data</description>
3 <macros> 3 <macros>
4 <import>scpred_macros.xml</import> 4 <import>scpred_macros.xml</import>
5 </macros> 5 </macros>
6 <expand macro="requirements" /> 6 <expand macro="requirements" />
7 <command detect_errors="exit_code"><![CDATA[ 7 <command detect_errors="exit_code"><![CDATA[
8 scpred_train_test_split.R --input-sce-object "${input_sce_object}" --normalised-counts-slot "${norm_counts_slot}" --training-matrix "${training_mat}" --test-matrix "${test_mat}" --cell-types-column "${cell_types_col}" --training-labels "${training_labs}" --test-labels "${test_labs}" --training-ratio "${training_ratio}" ]]></command> 8 scpred_train_test_split.R --input-sce-object "${input_sce_object}" --training-matrix "${training_mat}" --test-matrix "${test_mat}" --training-labels "${training_labs}" --cell-types-column "${cell_types_col}" --test-labels "${test_labs}"
9
10 #if $norm_counts_slot
11 --normalised-counts-slot "${norm_counts_slot}"
12 #end if
13 #if $training_ratio
14 --training-ratio "${training_ratio}"
15 #end if
16
17 ]]></command>
9 <inputs> 18 <inputs>
10 <param type="data" name="input_sce_object" label="SCE object containing expression data" format="rdata" help="File with serialized SingleCellExperiment object that contains expression matrix" /> 19 <param type="data" name="input_sce_object" label="SCE object containing expression data" format="rdata" help="File with serialized SingleCellExperiment object that contains expression matrix" />
11 <param type="text" name="norm_counts_slot" value="normcounts" label="Normalised counts slot" help="Slot containing normalised counts in input SCE object" /> 20 <param type="text" name="norm_counts_slot" value="normcounts" label="Normalised counts slot" help="Slot containing normalised counts in input SCE object" />
12 <param type="text" name="cell_types_col" label="Column name for assigned cell types" /> 21 <param type="text" name="cell_types_col" label="Column name for assigned cell types" />
13 <param type="float" name="training_ratio" label="Train/test split ratio" value="0.7" help="What proportion of the data set (0 to 1) should be used for training" /> 22 <param type="float" name="training_ratio" label="Train/test split ratio" value="0.7" help="What proportion of the data set (0 to 1) should be used for training" />