Mercurial > repos > ebi-gxa > seurat_dim_plot
comparison seurat_dim_plot.xml @ 1:daeca8f7a26e draft
planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/ commit 0463f230d18201c740851d72e31a5024f391207f
| author | ebi-gxa |
|---|---|
| date | Mon, 25 Nov 2019 06:12:13 -0500 |
| parents | 6e26ee99fdfc |
| children | 34f8d81f9d75 |
comparison
equal
deleted
inserted
replaced
| 0:6e26ee99fdfc | 1:daeca8f7a26e |
|---|---|
| 1 <tool id="seurat_dim_plot" name="Seurat Plot dimension reduction" version="2.3.1+galaxy0"> | 1 <tool id="seurat_dim_plot" name="Seurat Plot dimension reduction" version="@SEURAT_VERSION@_@VERSION@+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@ |
| 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 |
| 49 --png-width $png_width | 49 --png-width $png_width |
| 50 --png-height $png_height | 50 --png-height $png_height |
| 51 --output-image-file $output_image_file | 51 --output-image-file $output_image_file |
| 52 ]]></command> | 52 ]]></command> |
| 53 <inputs> | 53 <inputs> |
| 54 <param type="data" name="input" format="rdata" label="RDS object" help='File in which a serialized R matrix object may be found'/> | 54 <expand macro="input_object_params"/> |
| 55 <param type="text" name="reduction_use" value='pca' label="Dimensionality reduction" help='Which dimensionality reduction to use. Default is "pca", can also be "tsne", or "ica", assuming these are precomputed' /> | 55 <param type="text" name="reduction_use" value='pca' label="Dimensionality reduction" help='Which dimensionality reduction to use. Default is "pca", can also be "tsne", or "ica", assuming these are precomputed' /> |
| 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' /> |
| 83 <help><