Mercurial > repos > recetox > recetox_aplcms_compute_clusters
view recetox_aplcms_compute_clusters.xml @ 6:149b9cc7499b draft
planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/recetox_aplcms commit 0873c036d734782d2647b0eea84cd1a0658f5e58
author | recetox |
---|---|
date | Wed, 19 Jul 2023 00:27:18 +0000 |
parents | 60a09c4fa7a0 |
children | 550667ce03f1 |
line wrap: on
line source
<tool id="recetox_aplcms_compute_clusters" name="recetox-aplcms - compute clusters" version="@TOOL_VERSION@+galaxy2" profile="21.09"> <description>compute clusters of mz and rt across samples and assign cluster IDs to individual features</description> <macros> <import>macros.xml</import> <import>help.xml</import> </macros> <edam_operations> <edam_operation>operation_2928</edam_operation> </edam_operations> <expand macro="annotation"/> <expand macro="creator"/> <expand macro="requirements"/> <command detect_errors="aggressive"><![CDATA[ Rscript -e 'source("${__tool_directory__}/utils.R")' -e 'source("${run_script}")' ]]></command> <configfiles> <configfile name="run_script"><![CDATA[ #set filenames = str("', '").join([str($f) for $f in $files]) feature_tables <- load_parquet_collection(c('$filenames')) sample_names <- unlist(lapply(feature_tables, load_sample_name)) validate_sample_names(sample_names) ordering <- order(sample_names) feature_tables <- feature_tables[ordering] sample_names <- sample_names[ordering] clusters <- compute_clusters_simple( feature_tables = feature_tables, sample_names = sample_names, mz_tol_ppm = $mz_tol_relative_ppm, rt_tol = $rt_tol ) sample_names <- unlist(lapply(clusters, restore_sample_name)) save_parquet_collection(clusters, sample_names, "clustered") ]]></configfile> </configfiles> <inputs> <param name="files" type="data_collection" collection_type="list" format="parquet" label="Input data" help="List of tables containing features." /> <expand macro="tolerances"/> </inputs> <outputs> <collection name="clustered_feature_tables" type="list" label="${tool.name} feature_tables on ${on_string}"> <discover_datasets pattern="__designation__" directory="clustered" format="parquet" /> </collection> </outputs> <tests> </tests> <help> <![CDATA[ @COMPUTE_CLUSTERS_HELP@ @GENERAL_HELP@ ]]> </help> <expand macro="citations"/> </tool>