comparison sc3-calc-dists.xml @ 0:d005fe979d80 draft default tip

planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 9bf9a6e46a330890be932f60d1d996dd166426c4
author ebi-gxa
date Wed, 03 Apr 2019 11:35:30 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:d005fe979d80
1 <?xml version="1.0" encoding="utf-8"?>
2 <tool id="sc3_calc_dists" name="SC3 Calculate Distances" version="@TOOL_VERSION@+galaxy0">
3 <description>between cells</description>
4 <macros>
5 <import>sc3-macros.xml</import>
6 </macros>
7 <expand macro="requirements" />
8 <command detect_errors="exit_code"><![CDATA[
9 sc3-sc3-calc-dists.R -i '${sc3_prepared}' -o '${sc3_distances}'
10 ]]></command>
11
12 <inputs>
13 <param name="sc3_prepared" type="data" format="rdata" label="Serialised sc3 SingleCellExperiment object"/>
14 </inputs>
15
16 <outputs>
17 <data name="sc3_distances" format="rdata" label="${tool.name} on ${on_string}: serialised sc3 SingleCellExperiment with calculated distances"/>
18 </outputs>
19
20 <tests>
21 <test>
22 <param name="sc3_prepared" value="sc3_prepared.rdata"/>
23 <output name="sc3_distances" file="sc3_distances.rdata"/>
24 </test>
25 </tests>
26
27 <help><![CDATA[
28 =====================================================
29 This function calculates distances between the cells.
30 =====================================================
31
32 It creates and populates the following items of the sc3 slot of the metadata(object):
33 - distances: contains a list of distance matrices corresponding to Euclidean, Pearson and Spearman distances.
34
35 @HELP@
36
37 @VERSION_HISTORY@
38 ]]></help>
39 <expand macro="citations" />
40 </tool>