comparison monocle3-diffExp.xml @ 0:c0441ea8f37a draft

"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 815e36252846236124957052433572f1c1247114"
author ebi-gxa
date Mon, 16 Sep 2019 09:50:52 -0400
parents
children a7d4f80d1265
comparison
equal deleted inserted replaced
-1:000000000000 0:c0441ea8f37a
1 <?xml version="1.0" encoding="utf-8"?>
2 <tool id="monocle3_diffExp" name="Monocle3 diffExp" version="@TOOL_VERSION@+galaxy0">
3 <description> of genes along a trajectory</description>
4 <macros>
5 <import>monocle3-macros.xml</import>
6 </macros>
7 <expand macro="requirements"/>
8 <command detect_errors="exit_code"><![CDATA[
9 LANG=en_US.UTF-8 monocle3 diffExp
10 --neighbor-graph '$(neighbor_graph)'
11 --reduction-method '$(reduction_method)'
12 #if $knn
13 --knn '$(knn)'
14 #end if
15 --method '$(method)'
16 --alternative '$(alternative)'
17
18 @INPUT_OPTS@
19 output.tsv
20
21 @VERBOSE@
22 ]]></command>
23
24 <inputs>
25 <expand macro="input_object_params"/>
26 <param name="neighbor_graph" argument="--neighbor-graph" type="select" label="What neighbor graph to use, principal graph recommended for trajectory analysis.">
27 <option value="knn" selected="true">KNN</option>
28 <option value="principal_graph">Principal graph</option>
29 </param>
30 <param name="reduction_method" argument="--reduction-method" type="select" label="The reduction method to base the analysis on.">
31 <option value="UMAP" selected="true">UMAP</option>
32 </param>
33 <param name="knn" argument="--knn" optional="true" type="integer" value="20" label="Number of nearest neighbors used for building the kNN graph which is passed to knn2nb function during the Moran's I (Geary's C) test procedure."/>
34 <param name="method" argument="--method" type="select" label="A character string specifying the method for detecting significant genes showing correlated expression along the principal graph embedded in the low dimensional space.">
35 <option value="Moran_I" selected="true">Moran_I</option>
36 </param>
37 <param name="alternative" argument="--alternative" type="select" label="A character string specifying the alternative hypothesis.">
38 <option value="greater" selected="true">greater</option>
39 <option value="less">less</option>
40 <option value="two.sided">two-sided</option>
41 </param>
42 <expand macro="verbose_flag"/>
43 </inputs>
44
45 <outputs>
46 <data name="output_tsv" format="tsv" from_work_dir="output.tsv" label="${tool.name} on ${on_string}: tsv"/>
47 </outputs>
48
49 <tests>
50 <test>
51 <param name="input_object_file" value="input.RDS"/>
52 <param name="input_object_format" value="cds3"/>
53 <param name="neighbor_graph" value="knn"/>
54 <param name="reduction_method" value="UMAP"/>
55 <param name="knn" value="20"/>
56 <param name="method" value="Moran_I"/>
57 <param name="alternative" value="greater"/>
58 <output name="output_tsv" file="output.tsv" ftype="tsv" compare="sim_size"/>
59 </test>
60 </tests>
61
62 <help><![CDATA[
63 ========================================================================
64 Monocle3 differential expression testing along trajectory (`graph_test`)
65 ========================================================================
66
67 Identify differentially expressed genes along the inferred trajectory.
68
69 @HELP@
70
71 @VERSION_HISTORY@
72 ]]></help>
73 <expand macro="citations"/>
74 </tool>