Mercurial > repos > tduigou > rptools_rpviz
changeset 7:e5a27c4f46de draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rptools commit e6166111b59ed3077aef629dbd7b404f27896311-dirty
| author | tduigou |
|---|---|
| date | Wed, 22 Oct 2025 12:03:38 +0000 |
| parents | 693c335d65e7 |
| children | 67a1822ee30e |
| files | macros.xml rpviz.xml |
| diffstat | 2 files changed, 23 insertions(+), 20 deletions(-) [+] |
line wrap: on
line diff
--- a/macros.xml Wed Jul 24 08:42:46 2024 +0000 +++ b/macros.xml Wed Oct 22 12:03:38 2025 +0000 @@ -1,15 +1,15 @@ <macros> - <token name="@TOOL_VERSION@">6.5.0</token> + <token name="@TOOL_VERSION@">6.6.6</token> <token name="@VERSION_SUFFIX@">0</token> <xml name="requirements"> <requirements> <requirement type="package" version="@TOOL_VERSION@">rptools</requirement> - <yield/> + <yield /> </requirements> </xml> <xml name="creator"> <creator> - <organization name="BioRetroSynth" url="https://github.com/brsynth"/> + <organization name="BioRetroSynth" url="https://github.com/brsynth" /> </creator> </xml> </macros>
--- a/rpviz.xml Wed Jul 24 08:42:46 2024 +0000 +++ b/rpviz.xml Wed Oct 22 12:03:38 2025 +0000 @@ -1,9 +1,10 @@ -<tool id="rptools_rpviz" name="Visualize pathways" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="21.09"> +<tool id="rptools_rpviz" name="Visualize pathways" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" + profile="21.09"> <description>Visualize pathways from the RetroPath Suite</description> <macros> <import>macros.xml</import> </macros> - <expand macro="requirements"/> + <expand macro="requirements" /> <command detect_errors="exit_code"><![CDATA[ #set input_folder="input_folder" mkdir -p '$input_folder' && @@ -28,49 +29,51 @@ <inputs> <conditional name="input_type_conditional"> <param name="input_type" type="select" label="Source SBML format"> - <option value="tar" selected="True">TAR</option> - <option value="sbml">Collection</option> + <option value="sbml" selected="True">Collection</option> + <option value="tar">TAR</option> <option value="single_sbml">single SBML</option> </param> <when value="tar"> <param name="input_tar" type="data" format="tar" label="Source SBML" /> </when> <when value="sbml"> - <param name="input_sbml" type="data_collection" format="sbml" collection_type="list" label="Source SBML" /> + <param name="input_sbml" type="data_collection" format="sbml" collection_type="list" + label="Source SBML" /> </when> <when value="single_sbml"> <param name="input_single_sbml" type="data" format="sbml" label="Source SBML" /> </when> </conditional> <section name="adv" title="Advanced Options" expanded="false"> - <param name="cofactor_file" type="data" format="tsv" optional="true" label="Cofactor file" help="File listing structures to consider as cofactors."/> + <param name="cofactor_file" type="data" format="tsv" optional="true" + label="Cofactor file" help="File listing structures to consider as cofactors." /> </section> </inputs> <outputs> - <data name="html_file" format="html" label="Rpviz: Pathways Visualization"/> + <data name="html_file" format="html" label="Rpviz: Pathways Visualization" /> </outputs> <tests> <test> - <!-- test 1: check if identical html output is produced (single sbml input) --> + <!-- test 1: check if identical html output is produced (single sbml input) --> <conditional name="input_type_conditional"> - <param name="input_type" value="single_sbml"/> + <param name="input_type" value="single_sbml" /> <param name="input_single_sbml" value="lycopene_CrtEBI_from_selenzy.xml" /> </conditional> - <output name="html_file" > + <output name="html_file"> <assert_contents> - <has_size value="1296252" delta="1000" /> + <has_size value="1297905" delta="10000" /> </assert_contents> </output> </test> <test> - <!-- test 2: check if identical html output is produced (tar input) --> + <!-- test 2: check if identical html output is produced (tar input) --> <conditional name="input_type_conditional"> - <param name="input_type" value="tar"/> + <param name="input_type" value="tar" /> <param name="input_tar" value="as_tar_inputs.tgz" /> </conditional> - <output name="html_file" > + <output name="html_file"> <assert_contents> - <has_size value="1604488" delta="1000" /> + <has_size value="1607200" delta="10000" /> </assert_contents> </output> </test> @@ -97,8 +100,8 @@ * **Pathways Visualization**\ : HTML output for pathway's visualization. ]]></help> - <expand macro="creator"/> + <expand macro="creator" /> <citations> <citation type="doi">10.1038/s41467-022-32661-x</citation> </citations> -</tool> +</tool> \ No newline at end of file
