Mercurial > repos > ggricourt > straindesign
comparison analyzing-model.xml @ 0:233d87b56795 draft default tip
"planemo upload for repository https://github.com/brsynth/straindesign commit ef548ee3fe2740006c95cafb67504c72ef509575"
| author | ggricourt |
|---|---|
| date | Thu, 29 Sep 2022 18:48:17 +0000 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:233d87b56795 |
|---|---|
| 1 <tool id="analyzing-model" name="analyzing-model" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" license="@LICENCE@"> | |
| 2 <description>Produce a pareto plot for a model.</description> | |
| 3 <macros> | |
| 4 <import>macros.xml</import> | |
| 5 </macros> | |
| 6 <expand macro="requirements"/> | |
| 7 <expand macro="stdio"/> | |
| 8 <command detect_errors="exit_code"><![CDATA[ | |
| 9 ## Run cmdline | |
| 10 python -m straindesign analyzing-model | |
| 11 @CMD_INPUT_MODEL@ | |
| 12 @CMD_INPUT_MEDIUM@ | |
| 13 @CMD_BIOMASS_RXN_ID@ | |
| 14 @CMD_TARGET_RXN_ID@ | |
| 15 @CMD_INPUT_PATHWAY@ | |
| 16 #if str('$substrate_cond.substrate_param') == 'yes': | |
| 17 --substrate-rxn-id '$substrate_cond.substrate_rxn_id' | |
| 18 #end if | |
| 19 --output-pareto-png '$output_png' | |
| 20 ]]></command> | |
| 21 <expand macro="env_variables"/> | |
| 22 <inputs> | |
| 23 <expand macro="input_model_sbml"/> | |
| 24 <expand macro="input_medium_tsv"/> | |
| 25 <expand macro="input_biomass_rxn_id"/> | |
| 26 <expand macro="input_target_rxn_id"/> | |
| 27 <expand macro="input_pathway_sbml"/> | |
| 28 <conditional name="substrate_cond"> | |
| 29 <param name="substrate_param" type="select" label="Provide a substrate reaction"> | |
| 30 <option value="yes">yes</option> | |
| 31 <option value="no" selected="true">No</option> | |
| 32 </param> | |
| 33 <when value="yes"> | |
| 34 <expand macro="input_substrate_rxn_id"/> | |
| 35 </when> | |
| 36 <when value="no"> | |
| 37 </when> | |
| 38 </conditional> | |
| 39 </inputs> | |
| 40 <outputs> | |
| 41 <data name="output_png" format="png" label="${tool.name}" /> | |
| 42 </outputs> | |
| 43 <tests> | |
| 44 <test> | |
| 45 <!-- test 1 --> | |
| 46 <param name="model" ftype="sbml" value="iAF1260.xml.gz"/> | |
| 47 <param name="biomass_rxn_id" value="BIOMASS_Ec_iAF1260_core_59p81M" /> | |
| 48 <param name="target_rxn_id" value="EX_tyrp_e" /> | |
| 49 <output name="output_png" ftype="png"> | |
| 50 <assert_contents> | |
| 51 <has_size value="34000" delta="4000"/> | |
| 52 </assert_contents> | |
| 53 </output> | |
| 54 </test> | |
| 55 <test> | |
| 56 <!-- test 2 --> | |
| 57 <param name="model" ftype="sbml" value="iAF1260.xml.gz"/> | |
| 58 <param name="biomass_rxn_id" value="BIOMASS_Ec_iAF1260_core_59p81M" /> | |
| 59 <param name="target_rxn_id" value="EX_tyrp_e" /> | |
| 60 <param name="substrate_rxn_id" value="EX_glc__D_e" /> | |
| 61 <output name="output_png" ftype="png"> | |
| 62 <assert_contents> | |
| 63 <has_size value="34000" delta="4000"/> | |
| 64 </assert_contents> | |
| 65 </output> | |
| 66 </test> | |
| 67 <test> | |
| 68 <!-- test 3 --> | |
| 69 <param name="model" ftype="sbml" value="iAF1260.xml.gz"/> | |
| 70 <param name="pathway" ftype="sbml" value="butanol.xml" /> | |
| 71 <param name="medium" ftype="tabular" value="butanol.tsv" /> | |
| 72 <param name="biomass_rxn_id" value="BIOMASS_Ec_iAF1260_core_59p81M" /> | |
| 73 <param name="substrate_rxn_id" value="EX_glc__D_e" /> | |
| 74 <param name="target_rxn_id" value="EX_1btol_e" /> | |
| 75 <output name="output_png" ftype="png"> | |
| 76 <assert_contents> | |
| 77 <has_size value="34000" delta="4000"/> | |
| 78 </assert_contents> | |
| 79 </output> | |
| 80 </test> | |
| 81 </tests> | |
| 82 <help><![CDATA[ | |
| 83 @HELP_TITLE@ | |
| 84 | |
| 85 This tool produces a phenotypic-phase-plane plot given these datas: | |
| 86 * model | |
| 87 * reaction producing a target | |
| 88 * biomass reaction | |
| 89 These informations are optionals and will be adapted to your needs: | |
| 90 * an heterologous pathway | |
| 91 * a carbon substrate | |
| 92 * media composition | |
| 93 | |
| 94 @HELP_LINK@ | |
| 95 ]]></help> | |
| 96 <expand macro="creator"/> | |
| 97 <expand macro="citation"/> | |
| 98 </tool> |
