Mercurial > repos > ebi-gxa > scmap_index_cell
annotate scmap_index_cell.xml @ 13:c17b3c6c1e31 draft default tip
planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 9dbf2be568a0cea589fee8a42f070718d7966780-dirty
author | ebi-gxa |
---|---|
date | Mon, 08 Jul 2024 08:53:12 +0000 |
parents | dd0b44bd359a |
children |
rev | line source |
---|---|
10
7c3f9606ed0a
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 824146613fdab1de5bf430e01422417a720fe3f2"
ebi-gxa
parents:
9
diff
changeset
|
1 <tool id="scmap_index_cell" name="Scmap index cells" version="@TOOL_VERSION@+galaxy0" profile="@PROFILE@"> |
0
628a433819c6
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 815e36252846236124957052433572f1c1247114"
ebi-gxa
parents:
diff
changeset
|
2 <description>creates a cell index for a dataset to enable fast approximate nearest neighbour search</description> |
628a433819c6
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 815e36252846236124957052433572f1c1247114"
ebi-gxa
parents:
diff
changeset
|
3 <macros> |
628a433819c6
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 815e36252846236124957052433572f1c1247114"
ebi-gxa
parents:
diff
changeset
|
4 <import>scmap_macros.xml</import> |
628a433819c6
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 815e36252846236124957052433572f1c1247114"
ebi-gxa
parents:
diff
changeset
|
5 </macros> |
628a433819c6
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 815e36252846236124957052433572f1c1247114"
ebi-gxa
parents:
diff
changeset
|
6 <expand macro="requirements" /> |
628a433819c6
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 815e36252846236124957052433572f1c1247114"
ebi-gxa
parents:
diff
changeset
|
7 <command detect_errors="exit_code"><![CDATA[ |
3
5593b0744de9
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 241c850301f8094f6aa0016e2335a8b550c29aed"
ebi-gxa
parents:
2
diff
changeset
|
8 scmap-preprocess-sce.R --input-object "${input_single_cell_experiment}" --output-sce-object sce_object_preprocessed.rds && |
11
dd0b44bd359a
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit a1ad1ddd9b8e4db5bb82c3accae8311e0e488b19"
ebi-gxa
parents:
10
diff
changeset
|
9 scmap-index-cell.R --input-object-file sce_object_preprocessed.rds --output-object-file '$output_single_cell_experiment' --random-seed '$random_seed' --remove-mat '${remove_mat}' |
3
5593b0744de9
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 241c850301f8094f6aa0016e2335a8b550c29aed"
ebi-gxa
parents:
2
diff
changeset
|
10 #if $train_id |
5593b0744de9
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 241c850301f8094f6aa0016e2335a8b550c29aed"
ebi-gxa
parents:
2
diff
changeset
|
11 --train-id '${train_id}' |
5593b0744de9
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 241c850301f8094f6aa0016e2335a8b550c29aed"
ebi-gxa
parents:
2
diff
changeset
|
12 #end if |
8
441df83ffc7c
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 519352db368942656aa9cb994da421cddad5d746"
ebi-gxa
parents:
5
diff
changeset
|
13 #if $n_chunks |
441df83ffc7c
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 519352db368942656aa9cb994da421cddad5d746"
ebi-gxa
parents:
5
diff
changeset
|
14 --number-chunks '$n_chunks' |
441df83ffc7c
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 519352db368942656aa9cb994da421cddad5d746"
ebi-gxa
parents:
5
diff
changeset
|
15 #end if |
441df83ffc7c
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 519352db368942656aa9cb994da421cddad5d746"
ebi-gxa
parents:
5
diff
changeset
|
16 #if $n_clusters |
441df83ffc7c
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 519352db368942656aa9cb994da421cddad5d746"
ebi-gxa
parents:
5
diff
changeset
|
17 --number-clusters '$n_clusters' |
441df83ffc7c
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 519352db368942656aa9cb994da421cddad5d746"
ebi-gxa
parents:
5
diff
changeset
|
18 #end if |
441df83ffc7c
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 519352db368942656aa9cb994da421cddad5d746"
ebi-gxa
parents:
5
diff
changeset
|
19 |
0
628a433819c6
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 815e36252846236124957052433572f1c1247114"
ebi-gxa
parents:
diff
changeset
|
20 ]]></command> |
628a433819c6
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 815e36252846236124957052433572f1c1247114"
ebi-gxa
parents:
diff
changeset
|
21 <inputs> |
628a433819c6
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 815e36252846236124957052433572f1c1247114"
ebi-gxa
parents:
diff
changeset
|
22 <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'" /> |
9
0f5e46b0981a
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit db21c1973b6c308f967326463121918f25bdea00"
ebi-gxa
parents:
8
diff
changeset
|
23 <param name="n_chunks" type="integer" label="Number of chunks" optional="true" value="0" help="Number of chunks into which the expr matrix is split" /> |
0f5e46b0981a
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit db21c1973b6c308f967326463121918f25bdea00"
ebi-gxa
parents:
8
diff
changeset
|
24 <param name="n_clusters" type="integer" label="Number of clusters" optional="true" value="0" help="Number of clusters per group for k-means clustering" /> |
3
5593b0744de9
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 241c850301f8094f6aa0016e2335a8b550c29aed"
ebi-gxa
parents:
2
diff
changeset
|
25 <param type="text" name="train_id" label="Dataset ID" help="ID of the training dataset" /> |
11
dd0b44bd359a
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit a1ad1ddd9b8e4db5bb82c3accae8311e0e488b19"
ebi-gxa
parents:
10
diff
changeset
|
26 <param type="boolean" name="remove_mat" checked="false" label="Remove Matrix" help="Should the expression data be removed after classifier is trained?" /> |
0
628a433819c6
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 815e36252846236124957052433572f1c1247114"
ebi-gxa
parents:
diff
changeset
|
27 <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." /> |
628a433819c6
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 815e36252846236124957052433572f1c1247114"
ebi-gxa
parents:
diff
changeset
|
28 </inputs> |
628a433819c6
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 815e36252846236124957052433572f1c1247114"
ebi-gxa
parents:
diff
changeset
|
29 <outputs> |
628a433819c6
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 815e36252846236124957052433572f1c1247114"
ebi-gxa
parents:
diff
changeset
|
30 <data name="output_single_cell_experiment" format="rdata" /> |
628a433819c6
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 815e36252846236124957052433572f1c1247114"
ebi-gxa
parents:
diff
changeset
|
31 </outputs> |
628a433819c6
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 815e36252846236124957052433572f1c1247114"
ebi-gxa
parents:
diff
changeset
|
32 <tests> |
628a433819c6
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 815e36252846236124957052433572f1c1247114"
ebi-gxa
parents:
diff
changeset
|
33 <test> |
628a433819c6
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 815e36252846236124957052433572f1c1247114"
ebi-gxa
parents:
diff
changeset
|
34 <param name="input_single_cell_experiment" value="select_features.rds" ftype="rdata"/> |
11
dd0b44bd359a
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit a1ad1ddd9b8e4db5bb82c3accae8311e0e488b19"
ebi-gxa
parents:
10
diff
changeset
|
35 <param name="remove_mat" value="true" /> |
dd0b44bd359a
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit a1ad1ddd9b8e4db5bb82c3accae8311e0e488b19"
ebi-gxa
parents:
10
diff
changeset
|
36 <output name="output_single_cell_experiment" file="index_cell.rds" compare="sim_size" delta="10000000"/> |
0
628a433819c6
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 815e36252846236124957052433572f1c1247114"
ebi-gxa
parents:
diff
changeset
|
37 </test> |
628a433819c6
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 815e36252846236124957052433572f1c1247114"
ebi-gxa
parents:
diff
changeset
|
38 </tests> |
628a433819c6
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 815e36252846236124957052433572f1c1247114"
ebi-gxa
parents:
diff
changeset
|
39 <help><![CDATA[ |
628a433819c6
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 815e36252846236124957052433572f1c1247114"
ebi-gxa
parents:
diff
changeset
|
40 @HELP@ |
628a433819c6
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 815e36252846236124957052433572f1c1247114"
ebi-gxa
parents:
diff
changeset
|
41 |
628a433819c6
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 815e36252846236124957052433572f1c1247114"
ebi-gxa
parents:
diff
changeset
|
42 @VERSION_HISTORY@ |
628a433819c6
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 815e36252846236124957052433572f1c1247114"
ebi-gxa
parents:
diff
changeset
|
43 ]]></help> |
628a433819c6
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 815e36252846236124957052433572f1c1247114"
ebi-gxa
parents:
diff
changeset
|
44 <expand macro="citations" /> |
628a433819c6
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 815e36252846236124957052433572f1c1247114"
ebi-gxa
parents:
diff
changeset
|
45 </tool> |