annotate neighbors_clusters_markers.xml @ 1:51eb02d9b17a draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit 566984b588e88225f0b3f2dae88c6fd084315e7c
author iuc
date Tue, 05 Nov 2024 11:54:58 +0000
parents 94f1b9c7286f
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
1 <tool id="seurat_clustering" name="Seurat Find Clusters" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
2 <description>- Neighbors and Markers</description>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
3 <macros>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
4 <import>macros.xml</import>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
5 </macros>
1
51eb02d9b17a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit 566984b588e88225f0b3f2dae88c6fd084315e7c
iuc
parents: 0
diff changeset
6 <expand macro="bio_tools"/>
0
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
7 <expand macro="requirements"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
8 <expand macro="version_command"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
9 <command detect_errors="exit_code"><![CDATA[
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
10 @CMD@
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
11 ]]></command>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
12 <configfiles>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
13 <configfile name="script_file"><![CDATA[
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
14 @CMD_imports@
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
15 @CMD_read_inputs@
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
16
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
17 #if $method.method == 'FindNeighbors'
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
18 seurat_obj<-FindNeighbors(
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
19 seurat_obj,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
20 #if $method.reduction != ''
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
21 reduction = '$method.reduction',
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
22 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
23 #if $method.dims != ''
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
24 dims = 1:$method.dims,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
25 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
26 k.param = $method.k_param,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
27 nn.method = '$method.nn_method.nn_method',
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
28 #if $method.nn_method.nn_method == 'rann'
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
29 nn.eps = $method.nn_method.nn_eps,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
30 #else if $method.nn_method.nn_method == 'annoy'
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
31 annoy.metric = '$method.nn_method.annoy_metric',
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
32 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
33 compute.snn = $method.adv.compute_snn.compute_snn,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
34 #if $method.adv.compute_snn.compute_snn == 'TRUE'
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
35 #if $method.adv.compute_snn.prune_snn
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
36 prune.snn = $method.adv.compute_snn.prune_snn,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
37 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
38 distance.matrix = $method.adv.compute_snn.distance_matrix,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
39 #else if $method.adv.compute_snn.compute_snn == 'FALSE'
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
40 distance.matrix = $method.adv.compute_snn.distance_matrix.distance_matrix,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
41 #if $method.adv.compute_snn.distance_matrix.distance_matrix == 'FALSE'
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
42 return.neighbor = $method.adv.compute_snn.distance_matrix.return_neighbor,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
43 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
44 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
45 l2.norm = $method.adv.l2_norm,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
46 n.trees = $method.adv.n_trees
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
47 )
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
48
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
49 #else if $method.method == 'FindMultiModalNeighbors'
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
50 seurat_obj<-FindMultiModalNeighbors(
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
51 seurat_obj,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
52 reduction.list = list('$method.reduction_1', '$method.reduction_2'),
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
53 dims.list = list(1:$method.dims_1, 1:$method.dims_2),
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
54 k.nn = $method.k_nn,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
55 knn.graph.name = '$method.adv.knn_graph_name',
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
56 snn.graph.name = '$method.adv.snn_graph_name',
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
57 weighted.nn.name = '$method.adv.weighted_nn_name',
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
58 #if $method.adv.modality_weight_name != ''
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
59 modality.weight.name = '$method.adv.modality_weight_name',
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
60 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
61 knn.range = $method.adv.knn_range
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
62 )
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
63
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
64 #else if $method.method == 'FindClusters'
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
65 @reticulate_hack@
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
66 seurat_obj<-FindClusters(
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
67 seurat_obj,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
68 modularity.fxn = $method.modularity_fxn,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
69 resolution = $method.resolution,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
70 algorithm = $method.algorithm.algorithm,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
71 #if $method.algorithm.algorithm == '4'
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
72 #if $method.algorithm.initial_membership
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
73 initial.membership = $method.algorithm.initial_membership,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
74 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
75 #if $method.algorithm.node_sizes
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
76 node.sizes = $method.algorithm.node_sizes,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
77 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
78 method = '$method.algorithm.method_cluster',
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
79 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
80 n.start = $method.n_start,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
81 n.iter = $method.n_iter,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
82 random.seed = $method.random_seed,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
83 #if $method.graph_name != ''
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
84 graph.name = '$method.graph_name',
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
85 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
86 #if $method.cluster_name != ''
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
87 cluster.name = '$method.cluster_name'
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
88 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
89 )
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
90
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
91 #else if $method.method == 'FindAllMarkers'
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
92
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
93 #if $method.features
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
94 features_list<-paste(readLines('$method.features'), collapse=",")
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
95 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
96
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
97 seurat_obj<-FindAllMarkers(
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
98 seurat_obj,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
99 #if $method.features
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
100 features = c(unlist(strsplit(features_list, ","))),
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
101 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
102 logfc.threshold = $method.logfc_threshold,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
103 test.use = '$method.test_use.test_use',
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
104 #if $method.test_use.test_use == 'negbinom'
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
105 #if $method.test_use.latent_vars != ''
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
106 latent.vars = c(unlist(strsplit(gsub(" ", "", '$method.test_use.latent_vars'), ","))),
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
107 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
108 min.cells.feature = $method.test_use.min_cells_feature,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
109 #else if $method.test_use.test_use == 'poisson'
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
110 #if $method.test_use.latent_vars != ''
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
111 latent.vars = c(unlist(strsplit(gsub(" ", "", '$method.test_use.latent_vars'), ","))),
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
112 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
113 min.cells.feature = $method.test_use.min_cells_feature,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
114 #else if $method.test_use.test_use =='LR'
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
115 #if $method.test_use.latent_vars != ''
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
116 latent.vars = c(unlist(strsplit(gsub(" ", "", '$method.test_use.latent_vars'), ","))),
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
117 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
118 #else if $method.test_use.test_use == 'MAST'
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
119 #if $method.test_use.latent_vars != ''
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
120 latent.vars = c(unlist(strsplit(gsub(" ", "", '$method.test_use.latent_vars'), ","))),
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
121 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
122 #else if $method.test_use.test_use == 'roc'
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
123 return.thresh = $method.test_use.return_thresh,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
124 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
125 slot = '$method.slot',
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
126 #if $method.adv.assay != ''
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
127 assay = '$method.adv.assay',
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
128 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
129 min.pct = $method.adv.min_pct,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
130 #if $method.adv.min_diff_pct
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
131 min.diff.pct = $method.adv.min_diff_pct,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
132 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
133 only.pos = $method.adv.only_pos,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
134 #if $method.adv.max_cells_per_ident
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
135 max.cells.per.ident = $method.adv.max_cells_per_ident,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
136 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
137 #if $method.adv.random_seed
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
138 random.seed = $method.adv.random_seed,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
139 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
140 min.cells.group = $method.adv.min_cells_group,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
141 #if $method.fc_name != ''
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
142 fc.name = '$method.adv.fc_name',
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
143 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
144 base = $method.adv.base,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
145 densify = $method.adv.densify
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
146 )
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
147
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
148 #if $method.set_top_markers.set_top_markers == 'true'
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
149 N = $method.set_top_markers.topN
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
150 seurat_obj<-dplyr::slice_head(seurat_obj, n = N, by = cluster)
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
151 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
152
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
153 @CMD_write_markers_tab@
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
154
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
155 #else if $method.method == 'FindMarkers'
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
156
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
157 #if $method.features
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
158 features_list<-paste(readLines('$method.features'), collapse=",")
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
159 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
160 #if $method.cells.cells == 'true'
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
161 cell_1_list<-paste(readLines('$method.cells_1'), collapse=",")
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
162 cell_2_list<-paste(readLines('$method.cells_2'), collapse=",")
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
163 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
164
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
165 seurat_obj<-FindMarkers(
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
166 seurat_obj,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
167 slot = '$method.slot',
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
168 #if $method.cells.cells == 'true'
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
169 cells.1 = c(unlist(strsplit(cell_1_list, ","))),
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
170 cells.2 = c(unlist(strsplit(cell_2_list, ","))),
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
171 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
172 #if $method.regroup.regroup == 'true'
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
173 group.by = '$method.regroup.group_by',
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
174 #if $method.regroup.subset_ident != ''
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
175 subset.ident = '$method.regroup.subset_ident',
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
176 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
177 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
178 #if $method.ident.ident == 'true'
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
179 ident.1 = '$method.ident.ident_1',
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
180 #if $method.ident.ident_2 != ''
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
181 ident.2 = c(unlist(strsplit(gsub(" ", "", '$method.ident.ident_2'), ","))),
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
182 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
183 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
184 #if $method.features
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
185 features = c(unlist(strsplit(features_list, ","))),
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
186 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
187 logfc.threshold = $method.logfc_threshold,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
188 test.use = '$method.test_use.test_use',
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
189 #if $method.test_use.test_use == 'negbinom'
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
190 #if $method.test_use.latent_vars != ''
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
191 latent.vars = c(unlist(strsplit(gsub(" ", "", '$method.test_use.latent_vars'), ","))),
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
192 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
193 min.cells.feature = $method.test_use.min_cells_feature,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
194 #else if $method.test_use.test_use == 'poisson'
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
195 #if $method.test_use.latent_vars != ''
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
196 latent.vars = c(unlist(strsplit(gsub(" ", "", '$method.test_use.latent_vars'), ","))),
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
197 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
198 min.cells.feature = $method.test_use.min_cells_feature,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
199 #else if $method.test_use.test_use =='LR'
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
200 #if $method.test_use.latent_vars != ''
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
201 latent.vars = c(unlist(strsplit(gsub(" ", "", '$method.test_use.latent_vars'), ","))),
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
202 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
203 #else if $method.test_use.test_use == 'MAST'
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
204 #if $method.test_use.latent_vars != ''
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
205 latent.vars = c(unlist(strsplit(gsub(" ", "", '$method.test_use.latent_vars'), ","))),
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
206 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
207 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
208 #if $method.adv.assay != ''
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
209 assay = '$method.adv.assay',
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
210 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
211 min.pct = $method.adv.min_pct,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
212 #if $method.adv.min_diff_pct
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
213 min.diff.pct = $method.adv.min_diff_pct,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
214 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
215 only.pos = $method.adv.only_pos,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
216 #if $method.adv.max_cells_per_ident
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
217 max.cells.per.ident = $method.adv.max_cells_per_ident,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
218 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
219 #if $method.adv.random_seed
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
220 random.seed = $method.adv.random_seed,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
221 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
222 min.cells.group = $method.adv.min_cells_group,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
223 #if $method.adv.fc_name != ''
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
224 fc.name = '$method.adv.fc_name',
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
225 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
226 densify = $method.adv.densify
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
227 )
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
228
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
229 @CMD_write_markers_tab@
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
230
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
231 #else if $method.method == 'FindConservedMarkers'
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
232 seurat_obj<-FindConservedMarkers(
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
233 seurat_obj,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
234 ident.1 = $method.ident_1,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
235 #if $method.ident_2 != ''
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
236 ident.2 = $method.ident_2,
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
237 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
238 grouping.var = '$method.grouping_var',
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
239 #if $method.assay != ''
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
240 assay = '$method.assay',
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
241 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
242 slot = '$method.slot',
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
243 min.cells.group = $method.min_cells_group
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
244 )
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
245
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
246 @CMD_write_markers_tab@
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
247
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
248 #end if
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
249
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
250 @CMD_rds_write_outputs@
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
251
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
252 ]]></configfile>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
253 </configfiles>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
254 <inputs>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
255 <expand macro="input_rds"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
256 <conditional name="method">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
257 <param name="method" type="select" label="Method used">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
258 <option value="FindNeighbors">Compute nearest neighbors with 'FindNeighbors'</option>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
259 <option value="FindMultiModalNeighbors">Compute nearest neighbors for multimodal data with 'FindMultiModalNeighbors'</option>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
260 <option value="FindClusters">Identify cell clusters with 'FindClusters'</option>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
261 <option value="FindAllMarkers">Identify marker genes with 'FindAllMarkers'</option>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
262 <option value="FindMarkers">Identify marker genes for specific groups with 'FindMarkers'</option>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
263 <option value="FindConservedMarkers">Find markers conserved between groups with 'FindConservedMarkers'</option>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
264 </param>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
265 <when value="FindNeighbors">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
266 <expand macro="select_reduction_pca"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
267 <expand macro="set_dims"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
268 <param name="k_param" type="integer" value="20" label="Set k for k-nearest neighbors" help="(k.param)"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
269 <conditional name="nn_method">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
270 <param name="nn_method" type="select" label="Method for finding nearest neighbors" help="(nn.method)">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
271 <option value="rann">rann</option>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
272 <option value="annoy" selected="true">annoy</option>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
273 </param>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
274 <when value="rann">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
275 <param name="nn_eps" type="float" value="0.0" label="Set error bound for nearest neighbor search" help="(nn.eps)"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
276 </when>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
277 <when value="annoy">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
278 <param name="annoy_metric" type="select" label="Distance metric for annoy method" help="(annoy.metric)">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
279 <option value="euclidean" selected="true">euclidean</option>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
280 <option value="cosine">cosine</option>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
281 <option value="manhattan">manhattan</option>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
282 <option value="hamming">hamming</option>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
283 </param>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
284 </when>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
285 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
286 <section name="adv" title="Advanced Options">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
287 <param name="n_trees" type="integer" value="50" label="Number of trees for nearest neighbor search" help="(n.trees)"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
288 <param name="l2_norm" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="false" label="Take l2Norm of data" help="(l2.norm)"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
289 <conditional name="compute_snn">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
290 <param name="compute_snn" type="select" label="Compute the shared nearest neighbor (SNN) graph" help="(compute.snn)">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
291 <option value="FALSE">No</option>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
292 <option value="TRUE" selected="true">Yes</option>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
293 </param>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
294 <when value="FALSE">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
295 <conditional name="distance_matrix">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
296 <param name="distance_matrix" type="select" label="Use a distance matrix" help="(distance.matrix)">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
297 <option value="FALSE" selected="true">No</option>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
298 <option value="TRUE">Yes</option>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
299 </param>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
300 <when value="FALSE">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
301 <param name="return_neighbor" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="false" label="Return result as neighbor object" help="(return.neighbor)"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
302 </when>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
303 <when value="TRUE"></when>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
304 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
305 </when>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
306 <when value="TRUE">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
307 <param name="prune_snn" type="float" optional="true" value="" min="0" max="1" label="Set cutoff for Jaccard index when computing overlap for SNN" help="0 no pruning, 1 prune everything (prune.SNN)"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
308 <param name="distance_matrix" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="false" label="Use a distance matrix" help="(distance.matrix)"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
309 </when>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
310 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
311 </section>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
312 </when>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
313 <when value="FindMultiModalNeighbors">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
314 <param name="reduction_1" type="text" value="pca" label="Reduction to use for first modality">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
315 <expand macro="valid_name"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
316 </param>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
317 <param name="dims_1" type="integer" value="10" label="Number of dimensions to use from first reduction"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
318 <param name="reduction_2" type="text" value="apca" label="Reduction to use for second modality">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
319 <expand macro="valid_name"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
320 </param>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
321 <param name="dims_2" type="integer" value="10" label="Number of dimensions to use from second reduction"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
322 <param name="k_nn" type="integer" value="20" label="Number of multimodal neighbors to compute" help="(k.nn)"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
323 <section name="adv" title="Advanced Options">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
324 <param name="knn_graph_name" type="text" value="wknn" label="Name for multimodal knn graph" help="(knn.graph.name)">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
325 <expand macro="valid_name"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
326 </param>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
327 <param name="snn_graph_name" type="text" value="wsnn" label="Name for multimodal snn graph" help="(snn.graph.name)">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
328 <expand macro="valid_name"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
329 </param>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
330 <param name="weighted_nn_name" type="text" value="weighted.nn" label="Name for multimodal neighbor object" help="(weighted.nn.name)">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
331 <expand macro="valid_name"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
332 </param>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
333 <param name="modality_weight_name" optional="true" type="text" value="" label="Name for storing modality weights in metadata" help="(modality.weight.name)">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
334 <expand macro="valid_name"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
335 </param>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
336 <param name="knn_range" type="integer" value="200" label="Number of approximate neighbors to compute" help="(knn.range)"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
337 </section>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
338 </when>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
339 <when value="FindClusters">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
340 <param name="modularity_fxn" type="select" label="Select modularity function" help="(modularity.fxn)">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
341 <option value="1" selected="true">standard</option>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
342 <option value="2">alternative</option>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
343 </param>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
344 <param argument="resolution" type="float" value="0.8" label="Resolution"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
345 <conditional name="algorithm">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
346 <param argument="algorithm" type="select" label="Algorithm for modularity optimization">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
347 <option value="1" selected="true">1. Original Louvain</option>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
348 <option value="2">2. Louvain with multilevel refinement</option>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
349 <option value="3">3. SLM</option>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
350 <option value="4">4. Leiden</option>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
351 </param>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
352 <when value="4">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
353 <param name="initial_membership" type="integer" optional="true" value="" label="Set initial membership when using Python leidenalg function" help="defaults to singleton partition (initial.membership)"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
354 <param name="node_sizes" type="integer" optional="true" value="" label="Set node size when using Python leidenalg function" help="(node.sizes)"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
355 <param name="method_cluster" type="select" label="Method for leiden" help="matrix is fast for small data, enable igraph for larger data (method.cluster)">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
356 <option value="matrix" selected="true">matrix</option>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
357 <option value="igraph">igraph</option>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
358 </param>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
359 </when>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
360 <when value="1">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
361 </when>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
362 <when value="2">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
363 </when>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
364 <when value="3">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
365 </when>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
366 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
367 <param name="n_start" type="integer" value="10" label="Number of random starts" help="(n.start)"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
368 <param name="n_iter" type="integer" value="10" label="Maximal number of iterations per random start" help="(n.iter)"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
369 <param name="random_seed" type="integer" value="0" label="Set random seed" help="(random.seed)"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
370 <param name="group_singletons" type="boolean" truevalue="TRUE" falsevalue="FALSE" checked="true" label="Group singletons into nearest cluster" help="Set to false to create a cluster for all singletons (group.singletons)"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
371 <param name="graph_name" type="text" optional="true" value="" label="Name of graph to use for the clustering algorithm" help="(graph.name)">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
372 <expand macro="valid_name"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
373 </param>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
374 <param name="cluster_name" type="text" optional="true" value="" label="Name for output clusters" help="(cluster.name)">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
375 <expand macro="valid_name"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
376 </param>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
377 </when>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
378 <when value="FindAllMarkers">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
379 <expand macro="markers_inputs"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
380 <conditional name="set_top_markers">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
381 <param name="set_top_markers" type="select" label="Limit output to top N markers per cluster">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
382 <option value="true">Yes</option>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
383 <option value="false" selected="true">No</option>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
384 </param>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
385 <when value="true">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
386 <expand macro="set_topN"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
387 </when>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
388 <when value="false">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
389 </when>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
390 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
391 <section name="adv" title="Advanced Options">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
392 <param argument="base" type="integer" value="2" label="Base with respect to which logarithms are computed"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
393 <expand macro="advanced_markers_inputs"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
394 </section>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
395 </when>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
396 <when value="FindMarkers">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
397 <conditional name="cells">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
398 <param name="cells" type="select" label="Compare markers for two groups of cells">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
399 <option value="true">Yes</option>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
400 <option value="false" selected="true">No</option>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
401 </param>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
402 <when value="true">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
403 <param name="cells_1" type="data" format="txt,tabular" label="List of cell names for group 1" help="text file with one cell on each line (cells.1)"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
404 <param name="cells_2" type="data" format="txt,tabular" label="List of cell names for group 2" help="text file with one cell on each line (cells.2)"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
405 </when>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
406 <when value="false">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
407 </when>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
408 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
409 <conditional name="regroup">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
410 <param name="regroup" type="select" label="Change cell identities before finding markers">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
411 <option value="true">Yes</option>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
412 <option value="false" selected="true">No</option>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
413 </param>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
414 <when value="true">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
415 <param name="group_by" type="text" value="group" label="Name of identity class to regroup cells into" help="a group from the cell metadata to find markers for (group.by)"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
416 <param name="subset_ident" type="text" optional="true" value="" label="Identity class to subset before regrouping" help="only include cells from this cluster/identity in each new group (subset.ident)"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
417 </when>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
418 <when value="false">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
419 </when>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
420 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
421 <conditional name="ident">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
422 <param name="ident" type="select" label="Compare markers between clusters of cells">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
423 <option value="true">Yes</option>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
424 <option value="false" selected="true">No</option>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
425 </param>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
426 <when value="true">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
427 <param name="ident_1" type="text" optional="true" value="" label="Identity class to define markers for" help="e.g. cluster number or ident group name (ident.1)"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
428 <param name="ident_2" type="text" optional="true" value="" label="Second identity class to compare" help="e.g. comma-separated list of cluster numbers or idents, leave blank to compare ident.1 against all other clusters. (ident.2)">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
429 <expand macro="valid_list"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
430 </param>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
431 </when>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
432 <when value="false">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
433 </when>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
434 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
435 <expand macro="markers_inputs"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
436 <section name="adv" title="Advanced Options">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
437 <expand macro="advanced_markers_inputs"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
438 </section>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
439 </when>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
440 <when value="FindConservedMarkers">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
441 <param name="ident_1" type="text" value="ident1" label="Identity class to define markers for" help="(ident.1)"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
442 <param name="ident_2" type="text" optional="true" value="" label="Second identity class for comparison" help="leave blank to compare ident.1 to all other cells (ident.2)"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
443 <param name="grouping_var" type="text" value="group" label="Grouping variable" help="(grouping.var)"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
444 <expand macro="select_assay_RNA"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
445 <expand macro="select_slot_data"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
446 <param name="min_cells_group" type="integer" value="3" label="Minimum number of cells in one group" help="(min.cells.group)"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
447 </when>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
448 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
449 <expand macro="inputs_common_advanced"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
450 </inputs>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
451 <outputs>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
452 <expand macro="seurat_outputs"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
453 <expand macro="markers_out"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
454 </outputs>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
455 <tests>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
456 <test expect_num_outputs="2">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
457 <!-- test1: FindNeighbors -->
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
458 <param name="seurat_rds" location="https://zenodo.org/records/13732784/files/pca.rds"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
459 <conditional name="method">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
460 <param name="method" value="FindNeighbors"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
461 <param name="dims" value="9"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
462 <conditional name="nn_method">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
463 <param name="nn_method" value="annoy"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
464 <param name="annoy_metric" value="euclidean"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
465 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
466 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
467 <section name="advanced_common">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
468 <param name="show_log" value="true"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
469 </section>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
470 <output name="hidden_output">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
471 <assert_contents>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
472 <has_text_matching expression="FindNeighbors"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
473 </assert_contents>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
474 </output>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
475 <output name="rds_out" location="https://zenodo.org/records/13732784/files/neighbors.rds" ftype="rds" compare="sim_size"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
476 </test>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
477 <test expect_num_outputs="2">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
478 <!-- test2: FindMultiModalNeighbors -->
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
479 <param name="seurat_rds" location="https://zenodo.org/records/13732784/files/citeseq_dims.rds"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
480 <conditional name="method">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
481 <param name="method" value="FindMultiModalNeighbors"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
482 <param name="reduction_1" value="pca"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
483 <param name="dims_1" value="8"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
484 <param name="reduction_2" value="apca"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
485 <param name="dims_2" value="8"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
486 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
487 <section name="advanced_common">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
488 <param name="show_log" value="true"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
489 </section>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
490 <output name="hidden_output">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
491 <assert_contents>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
492 <has_text_matching expression="FindMultiModalNeighbors"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
493 </assert_contents>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
494 </output>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
495 <output name="rds_out" location="https://zenodo.org/records/13732784/files/multimodalneighbors.rds" ftype="rds" compare="sim_size"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
496 </test>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
497 <test expect_num_outputs="2">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
498 <!-- test3: FindClusters -->
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
499 <param name="seurat_rds" location="https://zenodo.org/records/13732784/files/neighbors.rds"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
500 <conditional name="method">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
501 <param name="method" value="FindClusters"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
502 <param name="resolution" value="0.8"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
503 <conditional name="algorithm">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
504 <param name="algorithm" value="1"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
505 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
506 <param name="n_start" value="10"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
507 <param name="n_iter" value="10"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
508 <param name="random_seed" value="0"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
509 <param name="group_singletons" value="TRUE"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
510 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
511 <section name="advanced_common">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
512 <param name="show_log" value="true"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
513 </section>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
514 <output name="hidden_output">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
515 <assert_contents>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
516 <has_text_matching expression="FindClusters"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
517 </assert_contents>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
518 </output>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
519 <output name="rds_out" location="https://zenodo.org/records/13732784/files/clusters.rds" ftype="rds" compare="sim_size"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
520 </test>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
521 <test expect_num_outputs="2">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
522 <!-- test4: FindClusters - leidenalg Installed -->
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
523 <param name="seurat_rds" location="https://zenodo.org/records/13732784/files/neighbors.rds"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
524 <conditional name="method">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
525 <param name="method" value="FindClusters"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
526 <param name="modularity_fxn" value="1"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
527 <param name="resolution" value="0.5"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
528 <conditional name="algorithm">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
529 <param name="algorithm" value="4"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
530 <param name="method_cluster" value="matrix"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
531 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
532 <param name="n_start" value="10"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
533 <param name="n_iter" value="10"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
534 <param name="random_seed" value="0"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
535 <param name="group_singletons" value="TRUE"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
536 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
537 <section name="advanced_common">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
538 <param name="show_log" value="true"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
539 </section>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
540 <output name="hidden_output">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
541 <assert_contents>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
542 <has_text_matching expression="FindClusters"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
543 </assert_contents>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
544 </output>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
545 <output name="rds_out" location="https://zenodo.org/records/13732784/files/clusters_leiden.rds" ftype="rds" compare="sim_size"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
546 </test>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
547 <test expect_num_outputs="3">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
548 <!-- test5: FindAllMarkers -->
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
549 <param name="seurat_rds" location="https://zenodo.org/records/13732784/files/clusters.rds"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
550 <conditional name="method">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
551 <param name="method" value="FindAllMarkers"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
552 <param name="logfc_threshold" value="0.1"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
553 <param name="slot" value="data"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
554 <conditional name="test_use">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
555 <param name="test_use" value="wilcox"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
556 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
557 <conditional name="set_top_markers">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
558 <param name="set_top_markers" value="true"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
559 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
560 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
561 <section name="advanced_common">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
562 <param name="show_log" value="true"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
563 </section>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
564 <output name="hidden_output">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
565 <assert_contents>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
566 <has_text_matching expression="FindAllMarkers"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
567 </assert_contents>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
568 </output>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
569 <output name="rds_out" location="https://zenodo.org/records/13732784/files/allmarkers.rds" ftype="rds"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
570 <output name="markers_tabular" location="https://zenodo.org/records/13732784/files/allmarkers.csv" ftype="csv">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
571 <assert_contents>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
572 <has_text_matching expression="avg_log2FC"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
573 </assert_contents>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
574 </output>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
575 </test>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
576 <test expect_num_outputs="3">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
577 <!-- test6: FindMarkers - Default -->
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
578 <param name="seurat_rds" location="https://zenodo.org/records/13732784/files/clusters.rds"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
579 <conditional name="method">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
580 <param name="method" value="FindMarkers"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
581 <param name="slot" value="data"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
582 <conditional name="cells">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
583 <param name="cells" value="false"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
584 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
585 <conditional name="ident">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
586 <param name="ident" value="true"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
587 <param name="ident_1" value="0"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
588 <param name="ident_2" value="1"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
589 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
590 <param name="logfc_threshold" value="0.1"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
591 <conditional name="test_use">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
592 <param name="test_use" value="wilcox"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
593 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
594 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
595 <section name="advanced_common">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
596 <param name="show_log" value="true"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
597 </section>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
598 <output name="hidden_output">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
599 <assert_contents>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
600 <has_text_matching expression="FindMarkers"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
601 </assert_contents>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
602 </output>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
603 <output name="rds_out" location="https://zenodo.org/records/13732784/files/markers.rds" ftype="rds"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
604 <output name="markers_tabular" location="https://zenodo.org/records/13732784/files/markers.csv" ftype="csv">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
605 <assert_contents>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
606 <has_text_matching expression="avg_log2FC"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
607 </assert_contents>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
608 </output>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
609 </test>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
610 <test expect_num_outputs="3">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
611 <!-- test7: FindMarkers - Limma Installed -->
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
612 <param name="seurat_rds" location="https://zenodo.org/records/13732784/files/clusters.rds"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
613 <conditional name="method">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
614 <param name="method" value="FindMarkers"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
615 <param name="slot" value="data"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
616 <conditional name="cells">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
617 <param name="cells" value="false"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
618 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
619 <conditional name="ident">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
620 <param name="ident" value="true"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
621 <param name="ident_1" value="0"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
622 <param name="ident_2" value="1"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
623 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
624 <param name="logfc_threshold" value="0.1"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
625 <conditional name="test_use">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
626 <param name="test_use" value="wilcox_limma"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
627 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
628 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
629 <section name="advanced_common">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
630 <param name="show_log" value="true"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
631 </section>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
632 <output name="hidden_output">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
633 <assert_contents>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
634 <has_text_matching expression="FindMarkers"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
635 </assert_contents>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
636 </output>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
637 <output name="rds_out" location="https://zenodo.org/records/13732784/files/markersLimma.rds" ftype="rds"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
638 <output name="markers_tabular" location="https://zenodo.org/records/13732784/files/markersLimma.csv" ftype="csv">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
639 <assert_contents>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
640 <has_text_matching expression="avg_log2FC"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
641 </assert_contents>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
642 </output>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
643 </test>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
644 <test expect_num_outputs="3">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
645 <!-- test8: FindMarkers - MAST Installed -->
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
646 <param name="seurat_rds" location="https://zenodo.org/records/13732784/files/clusters.rds"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
647 <conditional name="method">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
648 <param name="method" value="FindMarkers"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
649 <param name="slot" value="data"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
650 <conditional name="cells">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
651 <param name="cells" value="false"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
652 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
653 <conditional name="ident">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
654 <param name="ident" value="true"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
655 <param name="ident_1" value="0"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
656 <param name="ident_2" value="1"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
657 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
658 <param name="logfc_threshold" value="0.1"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
659 <conditional name="test_use">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
660 <param name="test_use" value="MAST"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
661 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
662 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
663 <section name="advanced_common">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
664 <param name="show_log" value="true"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
665 </section>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
666 <output name="hidden_output">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
667 <assert_contents>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
668 <has_text_matching expression="FindMarkers"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
669 </assert_contents>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
670 </output>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
671 <output name="rds_out" location="https://zenodo.org/records/13732784/files/markersMAST.rds" ftype="rds"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
672 <output name="markers_tabular" location="https://zenodo.org/records/13732784/files/markersMAST.csv" ftype="csv">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
673 <assert_contents>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
674 <has_text_matching expression="avg_log2FC"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
675 </assert_contents>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
676 </output>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
677 </test>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
678 <test expect_num_outputs="3">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
679 <!-- test9: FindMarkers - DESeq2 Installed -->
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
680 <param name="seurat_rds" location="https://zenodo.org/records/13732784/files/clusters.rds"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
681 <conditional name="method">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
682 <param name="method" value="FindMarkers"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
683 <param name="slot" value="counts"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
684 <conditional name="cells">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
685 <param name="cells" value="false"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
686 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
687 <conditional name="ident">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
688 <param name="ident" value="true"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
689 <param name="ident_1" value="0"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
690 <param name="ident_2" value="1"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
691 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
692 <param name="logfc_threshold" value="0.1"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
693 <conditional name="test_use">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
694 <param name="test_use" value="DESeq2"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
695 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
696 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
697 <section name="advanced_common">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
698 <param name="show_log" value="true"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
699 </section>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
700 <output name="hidden_output">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
701 <assert_contents>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
702 <has_text_matching expression="FindMarkers"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
703 </assert_contents>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
704 </output>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
705 <output name="rds_out" location="https://zenodo.org/records/13732784/files/markersDESeq2.rds" ftype="rds"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
706 <output name="markers_tabular" location="https://zenodo.org/records/13732784/files/markersDESeq2.csv" ftype="csv">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
707 <assert_contents>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
708 <has_text_matching expression="avg_log2FC"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
709 </assert_contents>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
710 </output>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
711 </test>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
712 <test expect_num_outputs="3">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
713 <!-- test10: FindConservedMarkers -->
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
714 <param name="seurat_rds" location="https://zenodo.org/records/13732784/files/integrated_umap.rds"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
715 <conditional name="method">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
716 <param name="method" value="FindConservedMarkers"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
717 <param name="ident_1" value="0"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
718 <param name="ident_2" value="1"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
719 <param name="grouping_var" value="Group"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
720 </conditional>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
721 <section name="advanced_common">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
722 <param name="show_log" value="true"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
723 </section>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
724 <output name="hidden_output">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
725 <assert_contents>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
726 <has_text_matching expression="FindConservedMarkers"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
727 </assert_contents>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
728 </output>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
729 <output name="rds_out" location="https://zenodo.org/records/13732784/files/conserved_markers.rds" ftype="rds"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
730 <output name="markers_tabular" location="https://zenodo.org/records/13732784/files/conserved_markers.csv" ftype="csv">
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
731 <assert_contents>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
732 <has_text_matching expression="Group_B_avg_log2FC"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
733 </assert_contents>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
734 </output>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
735 </test>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
736 </tests>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
737 <help><![CDATA[
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
738 Seurat
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
739 ======
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
740
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
741 Seurat is an R package designed for QC, analysis, and exploration of single-cell RNA-seq data.
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
742
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
743 Seurat aims to enable users to identify and interpret sources of heterogeneity from single-cell transcriptomic measurements, and to integrate diverse types of single-cell data.
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
744
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
745 FindNeighbors
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
746 =============
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
747
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
748 Compute the k.param nearest neighbors for a given dataset.
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
749
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
750 Can also optionally (via compute.SNN), construct a shared nearest neighbor graph by calculating the neighborhood overlap (Jaccard index) between every cell and its k.param nearest neighbors.
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
751
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
752 More details on the `seurat documentation
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
753 <https://satijalab.org/seurat/reference/findneighbors>`__
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
754
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
755 FindMultiModalNeighbors
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
756 =======================
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
757
1
51eb02d9b17a planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit 566984b588e88225f0b3f2dae88c6fd084315e7c
iuc
parents: 0
diff changeset
758 This function will construct a weighted nearest neighbor (WNN) graph for two modalities (e.g. RNA-seq and CITE-seq). For each cell, we identify the nearest neighbors based on a weighted combination of two modalities.
0
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
759
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
760 Takes as input two dimensional reductions, one computed for each modality.
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
761
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
762 More details on the `seurat documentation
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
763 <https://satijalab.org/seurat/reference/findmultimodalneighbors>`__
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
764
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
765 FindClusters
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
766 ============
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
767
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
768 Identify clusters of cells by a shared nearest neighbor (SNN) modularity optimization based clustering algorithm.
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
769
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
770 First calculate k-nearest neighbors and construct the SNN graph. Then optimize the modularity function to determine clusters.
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
771
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
772 More details on the `seurat documentation
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
773 <https://satijalab.org/seurat/reference/findclusters>`__
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
774
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
775
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
776 FindAllMarkers
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
777 ==============
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
778
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
779 Find markers (differentially expressed genes) for each of the identity classes in a dataset
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
780
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
781 Outputs a matrix containing a ranked list of putative markers, and associated statistics (p-values, ROC score, etc.)
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
782
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
783 Methods:
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
784
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
785 "wilcox" : Identifies differentially expressed genes between two groups of cells using a Wilcoxon Rank Sum test (default); will use a fast implementation by Presto if installed
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
786
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
787 "wilcox_limma" : Identifies differentially expressed genes between two groups of cells using the limma implementation of the Wilcoxon Rank Sum test; set this option to reproduce results from Seurat v4
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
788
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
789 "bimod" : Likelihood-ratio test for single cell gene expression, (McDavid et al., Bioinformatics, 2013)
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
790
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
791 "roc" : Identifies 'markers' of gene expression using ROC analysis. For each gene, evaluates (using AUC) a classifier built on that gene alone, to classify between two groups of cells. An AUC value of 1 means that expression values for this gene alone can perfectly classify the two groupings (i.e. Each of the cells in cells.1 exhibit a higher level than each of the cells in cells.2). An AUC value of 0 also means there is perfect classification, but in the other direction. A value of 0.5 implies that the gene has no predictive power to classify the two groups. Returns a 'predictive power' (abs(AUC-0.5) * 2) ranked matrix of putative differentially expressed genes.
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
792
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
793 "t" : Identify differentially expressed genes between two groups of cells using Student's t-test.
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
794
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
795 "negbinom" : Identifies differentially expressed genes between two groups of cells using a negative binomial generalized linear model. Use only for UMI-based datasets
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
796
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
797 "poisson" : Identifies differentially expressed genes between two groups of cells using a poisson generalized linear model. Use only for UMI-based datasets
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
798
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
799 "LR" : Uses a logistic regression framework to determine differentially expressed genes. Constructs a logistic regression model predicting group membership based on each feature individually and compares this to a null model with a likelihood ratio test.
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
800
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
801 "MAST" : Identifies differentially expressed genes between two groups of cells using a hurdle model tailored to scRNA-seq data. Utilizes the MAST package to run the DE testing.
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
802
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
803 "DESeq2" : Identifies differentially expressed genes between two groups of cells based on a model using DESeq2 which uses a negative binomial distribution (Love et al, Genome Biology, 2014).This test does not support pre-filtering of genes based on average difference (or percent detection rate) between cell groups. However, genes may be pre-filtered based on their minimum detection rate (min.pct) across both cell groups.
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
804
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
805 More details on the `seurat documentation
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
806 <https://satijalab.org/seurat/reference/findallmarkers>`__
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
807
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
808 FindMarkers
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
809 ===========
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
810
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
811 Find markers (differentially expressed genes) for identity classes (clusters) or groups of cells
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
812
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
813 Outputs a data.frame with a ranked list of putative markers as rows, and associated statistics as columns (p-values, ROC score, etc., depending on the test used (test.use)).
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
814
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
815 Methods - as for FindAllMarkers
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
816
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
817 More details on the `seurat documentation
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
818 <https://satijalab.org/seurat/reference/findmarkers>`__
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
819
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
820 FindConservedMarkers
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
821 ====================
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
822
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
823 Finds markers that are conserved between the groups
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
824
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
825 Uses metap::minimump as meta.method.
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
826
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
827 More details on the `seurat documentation
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
828 <https://satijalab.org/seurat/reference/findconservedmarkers>`__
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
829
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
830 ]]></help>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
831 <expand macro="citations"/>
94f1b9c7286f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seurat_v5 commit a9214c07b0cc929a51fd92a369bb89c675b6c88d
iuc
parents:
diff changeset
832 </tool>