comparison seurat_dim_plot.xml @ 1:d539788175d4 draft

planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 0a95e950ac73efdc9e84025ecb547e66fc3b83f6
author ebi-gxa
date Wed, 13 Mar 2019 12:53:31 -0400
parents 4f3a5ecefce5
children 4e73c73291cd
comparison
equal deleted inserted replaced
0:4f3a5ecefce5 1:d539788175d4
1 <tool id="seurat_dim_plot" name="Plot dimension reduction" version="2.3.1+galaxy0"> 1 <tool id="seurat_dim_plot" name="Seurat Plot dimension reduction" version="2.3.1+galaxy0">
2 <description>Graphs the output of a dimensional reduction technique (PCA by default). Cells are colored by their identity class.</description> 2 <description>graphs the output of a dimensional reduction technique (PCA by default). Cells are colored by their identity class.</description>
3 <macros> 3 <macros>
4 <import>seurat_macros.xml</import> 4 <import>seurat_macros.xml</import>
5 </macros> 5 </macros>
6 <expand macro="requirements" /> 6 <expand macro="requirements" />
7 <expand macro="version" /> 7 <expand macro="version" />
8 <command detect_errors="exit_code"><![CDATA[ 8 <command detect_errors="exit_code"><![CDATA[
9 seurat-dim-plot.R 9 seurat-dim-plot.R
10 --input-object-file '$input' 10 --input-object-file '$input'
11 #if $reduction_use 11 #if $reduction_use
12 --reduction-use '$reduction_use' 12 --reduction-use '$reduction_use'
13 #end if 13 #end if
14 #if $dim_1 14 #if $dim_1
15 --dim-1 $dim_1 15 --dim-1 $dim_1
56 <param type="integer" name="dim_1" value='1' label="X axis dimension" help='Dimension for x-axis' /> 56 <param type="integer" name="dim_1" value='1' label="X axis dimension" help='Dimension for x-axis' />
57 <param type="integer" name="dim_2" value='2' label="Y axis dimension" help='Dimension for y-axis' /> 57 <param type="integer" name="dim_2" value='2' label="Y axis dimension" help='Dimension for y-axis' />
58 <param type="data" name="cells_use" format="tabular" label="Cells list" help='File to be used to derive a vector of cells to plot (default is all cells)' optional='true'/> 58 <param type="data" name="cells_use" format="tabular" label="Cells list" help='File to be used to derive a vector of cells to plot (default is all cells)' optional='true'/>
59 <param type="float" name="pt_size" value='1' label="Point size" help='Adjust point size for plotting' /> 59 <param type="float" name="pt_size" value='1' label="Point size" help='Adjust point size for plotting' />
60 <param type="float" name="label_size" value='4' label="Label size" help='Sets size of labels'/> 60 <param type="float" name="label_size" value='4' label="Label size" help='Sets size of labels'/>
61 <param type="boolean" name="do_label" checked="false" label='Whether to label the clusters' truevalue="TRUE" falsevalue="FALSE" /> 61 <param type="boolean" name="do_label" checked="false" label='Label clusters' truevalue="TRUE" falsevalue="FALSE" />
62 <param type="text" name="group_by" value='ident' label='Group by' help='Group (color) cells in different ways' /> 62 <param type="text" name="group_by" value='ident' label='Group by' help='Group (color) cells in different ways' />
63 <param type="text" name="plot_title" format="text" label='Plot title' /> 63 <param type="text" name="plot_title" format="text" label='Plot title' />
64 <param type="boolean" name="do_bare" checked="false" label='Do only minimal formatting' truevalue="TRUE" falsevalue="FALSE" /> 64 <param type="boolean" name="do_bare" checked="false" label='Do only minimal formatting' truevalue="TRUE" falsevalue="FALSE" />
65 <param type="text" name="cols_use" format="text" label='Comma-separated list of colors, each color corresponds to an identity class. By default, ggplot assigns colors.' /> 65 <param type="text" name="cols_use" format="text" label="Colors" help='Comma-separated list of colors, each color corresponds to an identity class. By default, ggplot assigns colors.' />
66 <param type="text" name="pt_shape" format="text" label='If NULL, all points are circles (default). You can specify any cell attribute (that can be pulled with FetchData) allowing for both different colors and different shapes on cells.' /> 66 <param type="text" name="pt_shape" format="text" label="Cell attribute for shape" help='If NULL, all points are circles (default). You can specify any cell attribute (that can be pulled with FetchData) allowing for both different colors and different shapes on cells.' />
67 <param type="boolean" name="coord_fixed" checked="false" label='Use a fixed scale coordinate system (for spatial coordinates). Default is FALSE.' truevalue="TRUE" falsevalue="FALSE" /> 67 <param type="boolean" name="coord_fixed" checked="false" label="Fixed-scaled coordinate system" help='Use a fixed scale coordinate system (for spatial coordinates). Default is FALSE.' truevalue="TRUE" falsevalue="FALSE" />
68 <param type="boolean" name="no_axes" checked="false" label='Setting to TRUE will remove the axes.' truevalue="TRUE" falsevalue="FALSE" /> 68 <param type="boolean" name="no_axes" checked="false" label="Remove Axes" help='Setting to TRUE will remove the axes.' truevalue="TRUE" falsevalue="FALSE" />
69 <param type="boolean" name="dark_theme" checked="false" label='Use a dark theme for the plot..' truevalue="TRUE" falsevalue="FALSE" /> 69 <param type="boolean" name="dark_theme" checked="false" label='Use a dark theme for the plot..' truevalue="TRUE" falsevalue="FALSE" />
70 <param type="text" name="plot_order" format="text" label='Comma-separated string specifying the order of plotting for the idents (clusters). This can be useful for crowded plots if points of interest are being buried. Provide either a full list of valid idents or a subset to be plotted last (on top).' /> 70 <param type="text" name="plot_order" format="text" label="Ident (clusters) order" help='Comma-separated string specifying the order of plotting for the idents (clusters). This can be useful for crowded plots if points of interest are being buried. Provide either a full list of valid idents or a subset to be plotted last (on top).' />
71 <param type="integer" name="png_width" value='1000' label='Width of png (px)' /> 71 <param type="integer" name="png_width" value='1000' label="Figure width" help='Width of png in pixels.' />
72 <param type="integer" name="png_height" value='1000' label='Height of png (px)'/> 72 <param type="integer" name="png_height" value='1000' label="Figure height" help='Height of png in pixels.'/>
73 </inputs> 73 </inputs>
74 <outputs> 74 <outputs>
75 <data name="output_image_file" format="png" from_work_dir="pca.png" label="${tool.name} on ${on_string}"/> 75 <data name="output_image_file" format="png" from_work_dir="pca.png" label="${tool.name} on ${on_string}"/>
76 </outputs> 76 </outputs>
77 <tests> 77 <tests>
78 <test> 78 <test>
79 <param name="input" value="seurat_clustered.rds" /> 79 <param name="input" value="seurat_clustered.rds" />
80 <output name="output_image_file" file="pca.png" /> 80 <output name="output_image_file" file="pca.png" />
81 </test> 81 </test>
82 </tests> 82 </tests>
83 <help><![CDATA[ 83 <help><![CDATA[
84 .. class:: infomark 84 .. class:: infomark
85 85
86 **What it does** 86 **What it does**
106 * PNG-format image file 106 * PNG-format image file
107 107
108 .. _Seurat: https://www.nature.com/articles/nbt.4096 108 .. _Seurat: https://www.nature.com/articles/nbt.4096
109 .. _Satija Lab: https://satijalab.org/seurat/ 109 .. _Satija Lab: https://satijalab.org/seurat/
110 110
111 @VERSION_HISTORY@
111 112
112 ]]></help> 113 ]]></help>
113 <expand macro="citations" /> 114 <expand macro="citations" />
114 </tool> 115 </tool>