comparison rpbasicdesign.xml @ 1:e73c927dc332 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rpbasicdesign commit b4fb63a436c6c8711bacb4f35c1eab17a17efd16
author iuc
date Mon, 23 May 2022 10:56:05 +0000
parents cdd6a526bdcf
children dc7516d392ea
comparison
equal deleted inserted replaced
0:cdd6a526bdcf 1:e73c927dc332
1 <tool id="rpbasicdesign" name="BasicDesign" version="@TOOL_VERSION@" profile="21.09"> 1 <tool id="rpbasicdesign" name="BasicDesign" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="21.09">
2 <description>Build DNA-BOT input files from rpSBML</description> 2 <description>Build DNA-BOT input files from rpSBML</description>
3 <macros> 3 <macros>
4 <token name="@TOOL_VERSION@">1.0.1</token> 4 <token name="@VERSION_SUFFIX@">0</token>
5 <token name="@TOOL_VERSION@">1.1.0</token>
5 </macros> 6 </macros>
6 <requirements> 7 <requirements>
7 <requirement type="package" version="@TOOL_VERSION@">rpbasicdesign</requirement> 8 <requirement type="package" version="@TOOL_VERSION@">rpbasicdesign</requirement>
8 </requirements> 9 </requirements>
9 <command detect_errors="exit_code"><![CDATA[ 10 <command detect_errors="exit_code"><![CDATA[
19 --sample_size '$sample_size' 20 --sample_size '$sample_size'
20 $adv.cds_permutation 21 $adv.cds_permutation
21 --o_dnabot_dir 'out/dnabot_in' 22 --o_dnabot_dir 'out/dnabot_in'
22 $adv.sbol_output 23 $adv.sbol_output
23 --max_enz_per_rxn $adv.max_enz_per_rxn 24 --max_enz_per_rxn $adv.max_enz_per_rxn
25 --max_gene_per_construct $adv.max_gene_per_construct
24 ]]></command> 26 ]]></command>
25 <inputs> 27 <inputs>
26 <param name="rpsbml_file" type="data" format="sbml" label="rpSBML file" help="SBML file from which enzymes UniProt IDs will be collected."/> 28 <param name="rpsbml_file" type="data" format="sbml" label="rpSBML file" help="SBML file from which enzymes UniProt IDs will be collected."/>
27 <param argument="--backbone_id" type="text" value="BASIC_SEVA_37_CmR-p15A.1" label="Backbone part ID" help="Part ID to be used as the backbone."> 29 <param argument="--backbone_id" type="text" value="BASIC_SEVA_37_CmR-p15A.1" label="Backbone part ID" help="Part ID to be used as the backbone.">
28 <sanitizer invalid_char=""> 30 <sanitizer invalid_char="">
33 <add value="_" /> 35 <add value="_" />
34 </valid> 36 </valid>
35 </sanitizer> 37 </sanitizer>
36 <validator type="empty_field" message="Backbone ID is required"/> 38 <validator type="empty_field" message="Backbone ID is required"/>
37 </param> 39 </param>
38 <param argument="--sample_size" type="integer" value="88" min="1" max="88" label="Sample size" help="Number of constructs to generate."/> 40 <param argument="--sample_size" type="integer" value="88" min="1" max="88" label="Sample size" help="Number of construct to generate."/>
39 <section name="adv" title="Advanced Options" expanded="false"> 41 <section name="adv" title="Advanced Options" expanded="false">
40 <param name="parts_files" type="data" format="csv" optional="true" multiple="true" label="Linkers and user parts" help="List of files providing available linkers and user parts (backbone, promoters, ...) for constructs. Default: Standard Biolegio Parts (BBP-18500)" /> 42 <param name="parts_files" type="data" format="csv" optional="true" multiple="true" label="Linkers and user parts" help="List of files providing available linkers and user parts (backbone, promoters, ...) for constructs. Default: Standard Biolegio Parts (BBP-18500)" />
41 <param argument="--lms_id" type="text" value="LMS" label="LMS part ID" help="Part ID to be used as the LMS methylated linker." > 43 <param argument="--lms_id" type="text" value="LMS" label="LMS part ID" help="Part ID to be used as the LMS methylated linker." >
42 <sanitizer invalid_char=""> 44 <sanitizer invalid_char="">
43 <valid initial="string.letters,string.digits"> 45 <valid initial="string.letters,string.digits">
61 <validator type="empty_field" message="LMP ID is required"/> 63 <validator type="empty_field" message="LMP ID is required"/>
62 </param> 64 </param>
63 <param argument="--cds_permutation" type="boolean" truevalue="--cds_permutation true" falsevalue="--cds_permutation false" checked="true" label="Perform CDS permutation?" help="Whether all combinations of CDS permutation should be built." /> 65 <param argument="--cds_permutation" type="boolean" truevalue="--cds_permutation true" falsevalue="--cds_permutation false" checked="true" label="Perform CDS permutation?" help="Whether all combinations of CDS permutation should be built." />
64 <param argument="--sbol_output" type="boolean" checked="false" truevalue="--o_sbol_dir out/sbol_export" falsevalue="" label="Output SBOL results?" help="Whether SBOL (Synthetic Biology Open Language) depictions of constructs should be outputted" /> 66 <param argument="--sbol_output" type="boolean" checked="false" truevalue="--o_sbol_dir out/sbol_export" falsevalue="" label="Output SBOL results?" help="Whether SBOL (Synthetic Biology Open Language) depictions of constructs should be outputted" />
65 <param argument="--max_enz_per_rxn" type="integer" value="1" min="1" max="99" label="Maximum number of enyzme to consider per reaction." help="Maximum number of enyzme to consider per reaction. If more enzymes are available for a given reaction, then only the last one listed in the MIRIAM annotation section will be kept."/> 67 <param argument="--max_enz_per_rxn" type="integer" value="1" min="1" max="99" label="Maximum number of enyzme to consider per reaction." help="Maximum number of enyzme to consider per reaction. If more enzymes are available for a given reaction, then only the last one listed in the MIRIAM annotation section will be kept."/>
68 <param argument="--max_gene_per_construct" type="integer" value="3" min="1" max="10" label="Maximum number of genes per construct" help="If more genes are required, i.e. more reactions are described in the input SBML file, then the execution will failed."/>
66 </section> 69 </section>
67 </inputs> 70 </inputs>
68 <outputs> 71 <outputs>
69 <data name="Constructs" format="csv" from_work_dir="out/dnabot_in/constructs.csv" label="${tool.name} on ${rpsbml_file.name}: constructs" /> 72 <data name="Constructs" format="csv" from_work_dir="out/dnabot_in/constructs.csv" label="${tool.name} on ${rpsbml_file.name}: constructs" />
70 <data name="User_parts_plate" format="csv" from_work_dir="out/dnabot_in/user_parts_plate.csv" label="${tool.name} on ${rpsbml_file.name}: User parts plate"/> 73 <data name="User_parts_plate" format="csv" from_work_dir="out/dnabot_in/user_parts_plate.csv" label="${tool.name} on ${rpsbml_file.name}: User parts plate"/>
141 144
142 * **Linkers and user parts**\ : (string) List of files providing available linkers and user parts (backbone, promoters, ...) for constructs. Default: ( `Standard Biolegio Parts <https://www.biolegio.com/>`_: BBP-18500). 145 * **Linkers and user parts**\ : (string) List of files providing available linkers and user parts (backbone, promoters, ...) for constructs. Default: ( `Standard Biolegio Parts <https://www.biolegio.com/>`_: BBP-18500).
143 * **LMS part ID**\ : (string) part ID to be used as the LMS methylated linker. Default: LMS. 146 * **LMS part ID**\ : (string) part ID to be used as the LMS methylated linker. Default: LMS.
144 * **LMP part ID**\ : (string) part ID to be used as the LMP methylated linker. Default: LMP. 147 * **LMP part ID**\ : (string) part ID to be used as the LMP methylated linker. Default: LMP.
145 * **Backbone part ID**\ : (string) part ID to be used as the backbone. Default: BASIC_SEVA_37_CmR-p15A.1. 148 * **Backbone part ID**\ : (string) part ID to be used as the backbone. Default: BASIC_SEVA_37_CmR-p15A.1.
146 * **Sample size**\ : (int) Number of constructs to generate. Default: 88. 149 * **Sample size**\ : (int) Number of construct to generate. Default: 88.
147 * **Perform CDS permutation?**\ : (boolean) Whether all combinations of CDS permutation should be built Default: true. 150 * **Perform CDS permutation?**\ : (boolean) Whether all combinations of CDS permutation should be built Default: true.
148 * **Maximum number of enyzme to consider per reaction**\ : (int) Maximum number of enyzme to consider per reaction. If more enzymes are available for a given reaction, then only the last one listed in the MIRIAM annotation section will be kept. (Default: 1). 151 * **Maximum number of enyzme to consider per reaction**\ : (int) Maximum number of enyzme to consider per reaction. If more enzymes are available for a given reaction, then only the last one listed in the MIRIAM annotation section will be kept. (Default: 1).
152 * **Maximum number of genes per construct**\ : (int) If more genes are required, i.e. more reactions are described in the input SBML file, then the execution will failed. (Default: 3).
149 153
150 Output 154 Output
151 ------ 155 ------
152 156
153 * **constructs**\ : CSV construct file listing the constructs to be built. 157 * **constructs**\ : CSV construct file listing the constructs to be built.