comparison dropletutils-read-10x.xml @ 3:058a41379291 draft

"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit e1ed5cbba4d1c042b91cefec41f98e7c736dfbe2"
author ebi-gxa
date Mon, 29 Jun 2020 13:04:07 -0400
parents d62a9aa0411e
children d552332dff6d
comparison
equal deleted inserted replaced
2:48c1e7b39675 3:058a41379291
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <tool id="dropletutils_read_10x" name="DropletUtils Read10x" version="@TOOL_VERSION@+galaxy0"> 2 <tool id="dropletutils_read_10x" name="DropletUtils Read10x" version="@TOOL_VERSION@+galaxy1">
3 <description>into SingleCellExperiment object</description> 3 <description>into SingleCellExperiment object</description>
4 <macros> 4 <macros>
5 <import>dropletutils_macros.xml</import> 5 <import>dropletutils_macros.xml</import>
6 </macros> 6 </macros>
7 <expand macro="requirements"/> 7 <expand macro="requirements"/>
11 ln -s '${barcodes}' barcodes.tsv && 11 ln -s '${barcodes}' barcodes.tsv &&
12 dropletutils-read-10x-counts.R 12 dropletutils-read-10x-counts.R
13 -s . 13 -s .
14 -c TRUE 14 -c TRUE
15 -o '${output_rds}' 15 -o '${output_rds}'
16
17 #if $add_metadata_file
18 --metadata-files "${metadata_files}"
19 --cell-id-column "${cell_id_column}"
20 #end if
21
22
16 ]]></command> 23 ]]></command>
17 24
18 <inputs> 25 <inputs>
19 <param name="matrix" type="data" format="txt" label="Expression matrix in sparse matrix format (.mtx)"/> 26 <param name="matrix" type="data" format="txt" label="Expression matrix in sparse matrix format (.mtx)"/>
20 <param name="genes" type="data" format="tsv,tabular" label="Gene table"/> 27 <param name="genes" type="data" format="tsv,tabular" label="Gene table"/>
21 <param name="barcodes" type="data" format="tsv,tabular" label="Barcode/cell table"/> 28 <param name="barcodes" type="data" format="tsv,tabular" label="Barcode/cell table"/>
29 <conditional name="add_metadata">
30 <param name="add_metadata_file" type="boolean" checked="false" label="Should metadata file be added?" />
31 <when value="true" >
32 <param name="metadata_files" type="data" label="Metadata file" help="Provide metadata file e.g. containing cell types"/>
33 <param name="cell_id_column" type="text" label="Cell ID column" help="Cell ID column. Values must match those provided in the expression matrix." />
34 </when>
35 </conditional>
22 </inputs> 36 </inputs>
23 37
24 <outputs> 38 <outputs>
25 <data name="output_rds" format="rdata" label="${tool.name} on ${on_string}: serialized SingleCellExperiment object"/> 39 <data name="output_rds" format="rdata" label="${tool.name} on ${on_string}: serialized SingleCellExperiment object"/>
26 </outputs> 40 </outputs>