Mercurial > repos > gaelcge > r_signac_galaxy
diff signac_find_neighbours.xml @ 0:6e0b320d8b6a draft default tip
"planemo upload commit dc808171975d0012e25bd7b32adc7a5a5c56a145-dirty"
author | gaelcge |
---|---|
date | Tue, 02 Aug 2022 19:11:27 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/signac_find_neighbours.xml Tue Aug 02 19:11:27 2022 +0000 @@ -0,0 +1,24 @@ +<tool id="signac_find_neighbours" name="Find neighbours" version="0.1.0" python_template_version="3.5"> +<description>using the k-nearest neighbour algorithm.</description> +<macros> + <import>signac_macros.xml</import> +</macros> +<expand macro="requirements"/> +<stdio> + <exit_code range="1:" /> +</stdio> +<command><![CDATA[ + Rscript '${__tool_directory__}'/signac-find_neighbours.R --signac-object $signac_object --reduction $reduction_use --dims-use $dims_use --output-object-file $rds_signac_seurat_file +]]></command> +<inputs> + <param type="data" name="signac_object" label="Signac object." format="rdata" multiple="false" optional="false"/> + <param type="text" name="reduction_use" value='lsi' label="Dimensional reduction to use for Find neighbours (default:lsi)." help='Which dimensional reduction (PCA or ICA) to use for the Find neighbours input.'/> + <param type="text" name="dims_use" value='2,30' label="Dimensional reduction to use for Find neighbours (default:lsi)." help='How many dimensions to use for Find neighbours.'/> +</inputs> +<outputs> + <data name="rds_signac_seurat_file" format="rdata" label="${tool.name} on ${on_string}: Signac RDS"/> +</outputs> +<help><![CDATA[ +This tool runs the Find neighbours function in the Signac pipeline. + ]]></help> +</tool>