Mercurial > repos > ebi-gxa > monocle3_diffexp
comparison monocle3-diffExp.xml @ 0:9261eff5cd98 draft
"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 8ef74a1abb7d22b5c18611b8cdd7a5bf56c51b10"
| author | ebi-gxa |
|---|---|
| date | Tue, 03 Mar 2020 22:58:02 +0000 |
| parents | |
| children | 05f1ad42d728 |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:9261eff5cd98 |
|---|---|
| 1 <?xml version="1.0" encoding="utf-8"?> | |
| 2 <tool id="monocle3_diffExp" name="Monocle3 diffExp" version="@TOOL_VERSION@+galaxy0" profile="@PROFILE@"> | |
| 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> |
