Mercurial > repos > ebi-gxa > scmap_index_cell
comparison scmap_index_cell.xml @ 3:5593b0744de9 draft
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 241c850301f8094f6aa0016e2335a8b550c29aed"
author | ebi-gxa |
---|---|
date | Fri, 24 Apr 2020 11:25:51 -0400 |
parents | dd2a84734b87 |
children | faa50757208d |
comparison
equal
deleted
inserted
replaced
2:dd2a84734b87 | 3:5593b0744de9 |
---|---|
3 <macros> | 3 <macros> |
4 <import>scmap_macros.xml</import> | 4 <import>scmap_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 scmap-preprocess-sce.R --input-object "${input_single_cell_experiment}" --output-sce-object "${input_single_cell_experiment}.preprocessed" && scmap-index-cell.R --input-object-file "${input_single_cell_experiment}.preprocessed" --number-chunks '$n_chunks' --number-clusters '$n_clusters' --output-object-file '$output_single_cell_experiment' --random-seed '$random_seed' | 8 scmap-preprocess-sce.R --input-object "${input_single_cell_experiment}" --output-sce-object sce_object_preprocessed.rds && |
9 scmap-index-cell.R --input-object-file sce_object_preprocessed.rds --number-chunks '$n_chunks' --number-clusters '$n_clusters' --output-object-file '$output_single_cell_experiment' --random-seed '$random_seed' | |
10 #if $train_id | |
11 --train-id '${train_id}' | |
12 #end if | |
9 ]]></command> | 13 ]]></command> |
10 <inputs> | 14 <inputs> |
11 <param type="data" name="input_single_cell_experiment" label="SingleCellExperiment object" format="rdata" help="File with serialized SingleCellExperiment object as produced by 'scmap select features'" /> | 15 <param type="data" name="input_single_cell_experiment" label="SingleCellExperiment object" format="rdata" help="File with serialized SingleCellExperiment object as produced by 'scmap select features'" /> |
12 <param name="n_chunks" type="integer" label="Number of chunks" value='' help="Number of chunks into which the expr matrix is split" /> | 16 <param name="n_chunks" type="integer" label="Number of chunks" value='' help="Number of chunks into which the expr matrix is split" /> |
13 <param name="n_clusters" type="integer" label="Number of clusters" value='' help="Number of clusters per group for k-means clustering" /> | 17 <param name="n_clusters" type="integer" label="Number of clusters" value='' help="Number of clusters per group for k-means clustering" /> |
18 <param type="text" name="train_id" label="Dataset ID" help="ID of the training dataset" /> | |
14 <param name="random_seed" type="integer" label="Random seed" value='1' help="scmap-cell contains k-means step which makes it stochastic, i.e. running it multiple times will provide slightly different results. A fixed random seed ensures reproducibility." /> | 19 <param name="random_seed" type="integer" label="Random seed" value='1' help="scmap-cell contains k-means step which makes it stochastic, i.e. running it multiple times will provide slightly different results. A fixed random seed ensures reproducibility." /> |
15 </inputs> | 20 </inputs> |
16 <outputs> | 21 <outputs> |
17 <data name="output_single_cell_experiment" format="rdata" /> | 22 <data name="output_single_cell_experiment" format="rdata" /> |
18 </outputs> | 23 </outputs> |