Mercurial > repos > ecology > phylogenetic_occupancy_matcher
comparison PhylOccuMatcher.xml @ 0:e260f1a598da draft default tip
planemo upload for repository https://github.com/galaxyecology/tools-ecology/tree/master/tools/Phylodiversity_workflow commit 0de557d919c26eb0b5ab61504bc597d551503ac3
| author | ecology |
|---|---|
| date | Tue, 20 May 2025 09:53:38 +0000 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:e260f1a598da |
|---|---|
| 1 <tool id="phylogenetic_occupancy_matcher" name="PhylOccuMatcher" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="21.05"> | |
| 2 <description>match phylogenetic and occupancy data</description> | |
| 3 | |
| 4 <macros> | |
| 5 <token name="@TOOL_VERSION@">1.0</token> | |
| 6 <token name="@VERSION_SUFFIX@">0</token> | |
| 7 </macros> | |
| 8 | |
| 9 <requirements> | |
| 10 <requirement type="package" version="1.0.8">r-phyloregion</requirement> | |
| 11 <requirement type="package" version="1.6.5">r-matrix</requirement> | |
| 12 <requirement type="package" version="5.8_1">r-ape</requirement> | |
| 13 <requirement type="package" version="1.2.2">bioconductor-sparsearray</requirement> | |
| 14 </requirements> | |
| 15 | |
| 16 <required_files> | |
| 17 <include path="PhylOccuMatcher.R" /> | |
| 18 </required_files> | |
| 19 | |
| 20 | |
| 21 <command> | |
| 22 <![CDATA[ | |
| 23 Rscript '$__tool_directory__/PhylOccuMatcher.R' | |
| 24 '$phylogeny' | |
| 25 '$occupancy' | |
| 26 '$output1' | |
| 27 '$output2' | |
| 28 ]]> | |
| 29 </command> | |
| 30 | |
| 31 <inputs> | |
| 32 <param name="phylogeny" type="data" format="newick" label="Phylogeny file (Newick format)" /> | |
| 33 <param name="occupancy" type="data" format="tabular" label="Occupancy data (Tabular format)" /> | |
| 34 </inputs> | |
| 35 <outputs> | |
| 36 <data name="output1" format="newick" label="Phylogeny with occupancy data" /> | |
| 37 <data name="output2" format="tabular" label="Matched output data" /> | |
| 38 </outputs> | |
| 39 | |
| 40 <tests> | |
| 41 <test> | |
| 42 <param name="phylogeny" value="tree_file"/> | |
| 43 <param name="occupancy" value="actinos_test"/> | |
| 44 <output name="output1" file="output1" ftype="newick"/> | |
| 45 <output name="output2" file="output2" ftype="tabular"/> | |
| 46 </test> | |
| 47 </tests> | |
| 48 | |
| 49 <help> | |
| 50 <![CDATA[ | |
| 51 This tool matches phylogenetic data with occupancy data using a phylogeny file and an occupancy file. | |
| 52 Ensure that the input files are in the correct formats: | |
| 53 - Phylogeny file: Newick format | |
| 54 - Occupancy data: Tabular format | |
| 55 ]]> | |
| 56 </help> | |
| 57 | |
| 58 <citations> | |
| 59 <citation type="doi">10.32614/CRAN.package.phyloregion</citation> | |
| 60 <citation type="doi">10.32614/CRAN.package.Matrix</citation> | |
| 61 <citation type="doi">10.32614/CRAN.package.ape</citation> | |
| 62 <citation type="doi">10.18129/B9.bioc.SparseArray</citation> | |
| 63 </citations> | |
| 64 </tool> |
