comparison rpextractsink.xml @ 3:d9287c69a7f4 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rptools commit 044274b46d50a1d0e3708e80e0dfecf1de653c65
author tduigou
date Thu, 02 Nov 2023 14:37:08 +0000
parents caf2b5731a5e
children 904324338682
comparison
equal deleted inserted replaced
2:caf2b5731a5e 3:d9287c69a7f4
9 </stdio> 9 </stdio>
10 <command detect_errors="exit_code"><![CDATA[ 10 <command detect_errors="exit_code"><![CDATA[
11 python -m rptools.rpextractsink 11 python -m rptools.rpextractsink
12 '$input' 12 '$input'
13 '$sink' 13 '$sink'
14 --compartment_id '$compartment_id' 14 --compartment-id '$compartment_id'
15 $adv.remove_dead_end 15 $adv.remove_dead_end
16 $adv.standalone
16 --cache-dir "\${TMPDIR:-.}" 17 --cache-dir "\${TMPDIR:-.}"
17 ]]></command> 18 ]]></command>
18 <inputs> 19 <inputs>
19 <param name="input" type="data" format="sbml" optional="false" label="Strain" help="The structure of metabolites present in the chosen chassis strain in SBML format" /> 20 <param name="input" type="data" format="sbml" optional="false" label="Strain" help="The structure of metabolites present in the chosen chassis strain in SBML format" />
20 <param name="compartment_id" type="text" value="c" label="SBML compartment ID" help="Specify the compartment from which to extract the sink molecules. The default are for BiGG models (cytosol)" > 21 <param name="compartment_id" type="text" value="c" label="SBML compartment ID" help="Specify the compartment from which to extract the sink molecules. The default are for BiGG models (cytosol)" >
21 <validator type="empty_field" message="SBML compartment ID is required"/> 22 <validator type="empty_field" message="SBML compartment ID is required"/>
22 </param> 23 </param>
23 <section name="adv" title="Advanced Options" expanded="false"> 24 <section name="adv" title="Advanced Options" expanded="false">
24 <param argument="--remove_dead_end" type="boolean" truevalue="--remove_dead_end" falsevalue="" checked="true" label="Remove dead-end metabolites using FVA evaluation?" help="Perform FVA (Flux Variability Analysis) evaluation to remove dead end metabolites" /> 25 <param argument="--remove_dead_end" type="boolean" truevalue="--remove-dead-end" falsevalue="" checked="true" label="Remove dead-end metabolites using FVA evaluation?" help="Perform FVA (Flux Variability Analysis) evaluation to remove dead end metabolites" />
26 <param argument="--standalone" type="boolean" truevalue="--standalone" falsevalue="" checked="true" label="Do not connect to Internet" help="If True, do not retrieve InChI from Internet" />
25 </section> 27 </section>
26 </inputs> 28 </inputs>
27 <outputs> 29 <outputs>
28 <data name="sink" format="csv" metadata_source="input" label="Sink - ${input.name}" /> 30 <data name="sink" format="csv" metadata_source="input" label="Sink - ${input.name}" />
29 </outputs> 31 </outputs>
30 <tests> 32 <tests>
31 <test> 33 <test>
32 <!-- test 1: check if identical outputs are produced with iCN718 model input --> 34 <!-- test 1: check if identical outputs are produced with iCN718 model input -->
33 <param name="input" value="iCN718.xml.gz" /> 35 <param name="input" value="iCN718.xml.gz" />
34 <output name="sink" md5="0a7438b90704bf1ba88e123e6bb54df2" /> 36 <output name="sink" md5="5ff3987609142e828ec8e3c97b8dab12" />
35 </test> 37 </test>
36 </tests> 38 </tests>
37 <help><![CDATA[ 39 <help><![CDATA[
38 Sink from SBML 40 Sink from SBML
39 ================= 41 =================
53 * **SBML compartment ID**\ : (string, default: c) Specify the compartment from which to extract the sink molecules. The default are for BiGG models (cytosol). 55 * **SBML compartment ID**\ : (string, default: c) Specify the compartment from which to extract the sink molecules. The default are for BiGG models (cytosol).
54 56
55 Advanced options: 57 Advanced options:
56 58
57 * **Remove dead-end metabolites using FVA evaluation?**\ : (boolean, default: True) Perform FVA (Flux Variability Analysis) evaluation to remove dead end metabolites. 59 * **Remove dead-end metabolites using FVA evaluation?**\ : (boolean, default: True) Perform FVA (Flux Variability Analysis) evaluation to remove dead end metabolites.
60 * **Do not connect to Internet**: (boolean, default: False) If True, do not retrieve InChI from Internet
58 61
59 Output 62 Output
60 ------ 63 ------
61 64
62 * **Sink**\ : CSV file containing a collection of chemical species used by the restrosynthesis algorithm of `RetroPath2.0 <https://doi.org/10.1016/j.ymben.2017.12.002>`_. 65 * **Sink**\ : CSV file containing a collection of chemical species used by the restrosynthesis algorithm of `RetroPath2.0 <https://doi.org/10.1016/j.ymben.2017.12.002>`_.