comparison scater-read-10x-results.xml @ 0:da3f394039b5 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:40:51 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:da3f394039b5
1 <tool id="scater_read_10x_results" name="Scater read 10x data" version="@TOOL_VERSION@+galaxy0">
2 <description>Loads 10x data into a serialized scater R object</description>
3 <macros>
4 <import>scater_macros.xml</import>
5 </macros>
6 <expand macro="requirements" />
7 <command detect_errors="exit_code"><![CDATA[
8 ln -s '$matrix' matrix.mtx;
9 ln -s '$genes' genes.tsv;
10 ln -s '$barcodes' barcodes.tsv;
11
12 scater-read-10x-results.R -d ./ -o '$R_scater_serialized'
13 ]]></command>
14 <inputs>
15 <param type="data" name="matrix" format="txt" help="File containing the matrix.mtx, genes.txt, barcodes.txt files provided by 10X. A vector or named vector can be given in order to load several data directories. If a named vector is given, the cell barcode names will be prefixed with the name."/>
16 <param type="data" name="genes" format="tsv" help="File containing the genes.txt, barcodes.txt files provided by 10X. A vector or named vector can be given in order to load several data directories. If a named vector is given, the cell barcode names will be prefixed with the name."/>
17 <param type="data" name="barcodes" format="tsv" help="File containing the barcodes.txt files provided by 10X. A vector or named vector can be given in order to load several data directories. If a named vector is given, the cell barcode names will be prefixed with the name"/>
18 </inputs>
19 <outputs>
20 <data name="R_scater_serialized" format="rdata" label=""/>
21 </outputs>
22 <tests>
23 <test>
24 <param name="matrix" value="matrix.mtx"/>
25 <param name="genes" value="genes.tsv"/>
26 <param name="barcodes" value="barcodes.tsv"/>
27 <output name="R_scater_serialized" file="R_scater_serialized.rds"/>
28 </test>
29 </tests>
30 <help><![CDATA[
31 @HELP@
32
33 @VERSION_HISTORY@
34 ]]></help>
35 <expand macro="citations" />
36 </tool>