comparison seurat_create_object.xml @ 0:f8865ae30723 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:19:37 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:f8865ae30723
1 <tool id="seurat_create_seurat_object" name="Seurat CreateSeuratObject" version="2.3.1+galaxy0">
2 <description>create a Seurat object</description>
3 <macros>
4 <import>seurat_macros.xml</import>
5 </macros>
6 <expand macro="requirements" />
7 <expand macro="version" />
8 <command detect_errors="exit_code"><![CDATA[
9 seurat-create-seurat-object.R
10
11 --input-object-file '$input'
12 --output-object-file '$output'
13 ]]></command>
14
15 <inputs>
16 <param name="input" type="data" format="rdata" label="Seurat object" help="RDS file from Seurat read10x module." />
17 </inputs>
18
19 <outputs>
20 <data name="output" format="rdata" from_work_dir="*.rds" label="${tool.name} on ${on_string}: Seurat RDS"/>
21 </outputs>
22
23 <tests>
24 <test>
25 <param name="input" ftype="rdata" value="deng.rds"/>
26 <output name="output" ftype="rdata" value="seurat.rds" compare="sim_size"/>
27 </test>
28 </tests>
29 <help><![CDATA[
30 .. class:: infomark
31
32 **What it does**
33
34 Seurat_ is a toolkit for quality control, analysis, and exploration of single cell RNA sequencing data.
35 It is developed and maintained by the `Satija Lab`_ at NYGC. Seurat aims to enable users to identify and
36 interpret sources of heterogeneity from single cell transcriptomic measurements, and to integrate diverse
37 types of single cell data.
38
39 This tool creates a Seurat object from an RDS object.
40
41 -----
42
43 **Inputs**
44
45 * RDS object from Seurat read_10x module.
46
47 -----
48
49 **Outputs**
50
51 * Seurat RDS object
52
53 .. _Seurat: https://www.nature.com/articles/nbt.4096
54 .. _Satija Lab: https://satijalab.org/seurat/
55
56 @VERSION_HISTORY@
57
58 ]]></help>
59 <expand macro="citations" />
60 </tool>