annotate rrparser.xml @ 0:19fb8488cdbb draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
author iuc
date Mon, 27 Jun 2022 20:26:32 +0000
parents
children 46d4ac243530
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
1 <tool id="rrparser" name="RRules Parser" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="21.09">
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
2 <description>Retrieve the reaction rules from RetroRules</description>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
3 <macros>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
4 <token name="@VERSION_SUFFIX@">0</token>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
5 <token name="@TOOL_VERSION@">2.5.0</token>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
6 </macros>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
7 <requirements>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
8 <requirement type="package" version="@TOOL_VERSION@">rrparser</requirement>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
9 </requirements>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
10 <stdio>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
11 <regex match="WARNING:" level="warning" />
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
12 <regex match="ERROR:" level="fatal" />
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
13 </stdio>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
14 <command detect_errors="exit_code"><![CDATA[
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
15 python -m rrparser
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
16 #if str($rules.type) != "rules-file":
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
17 --rules_file retrorules
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
18 --rule-type '$rules.type'
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
19 #else:
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
20 --rules_file '$rules.file'
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
21 --input-format '$rules.input_format'
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
22 #end if
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
23 --diameters '$diameters'
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
24 --output-format csv
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
25 --rules-dir "\${TMPDIR:-.}"
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
26 #if str($compress) == "true":
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
27 --outfile '$out_rules'.csv.gz
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
28 && mv '$out_rules'.csv.gz '$out_rules'
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
29 #else:
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
30 --outfile '$out_rules'
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
31 #end if
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
32 ]]></command>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
33 <inputs>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
34 <conditional name="rules">
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
35 <param name="type" type="select" label="Rule Type" help="Return the rules that are in reverse, forward, both direction or from an input user file">
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
36 <option value="retro" selected="True">RetroRules (retro)</option>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
37 <option value="forward">RetroRules (forward)</option>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
38 <option value="all">RetroRules (all)</option>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
39 <option value="rules-file">Other reaction rules...</option>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
40 </param>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
41 <when value="rules-file">
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
42 <param name="file" type="data" format="csv" optional="False" label="Rules File" help="Filename of reaction rules"/>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
43 <param name="input_format" type="select" optional="False" label="File format" help="Input file format (default: csv)">
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
44 <option value="csv" selected="True">csv</option>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
45 <option value="tsv">tsv</option>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
46 </param>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
47 </when>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
48 </conditional>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
49 <param argument="--diameters" type="select" display="checkboxes" multiple="True" label="Select the diameters of the reactions rules" help=" Diameter of the sphere including the atoms around the reacting center (default is including all values: 2,4,6,8,10,12,14,16). The higher is the diameter, the more specific are the rules">
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
50 <option selected="true" value="2">2</option>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
51 <option selected="true" value="4">4</option>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
52 <option selected="true" value="6">6</option>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
53 <option selected="true" value="8">8</option>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
54 <option selected="true" value="10">10</option>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
55 <option selected="true" value="12">12</option>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
56 <option selected="true" value="14">14</option>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
57 <option selected="true" value="16">16</option>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
58 </param>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
59 <param name="compress" type="boolean" checked="false" label="Compress output" />
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
60 </inputs>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
61 <outputs>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
62 <data name="out_rules" format="csv" label="${tool.name}(${rules.type}, d=$diameters)" >
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
63 <change_format>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
64 <when input="compress" format="tar" value="true"/>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
65 </change_format>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
66 </data>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
67 </outputs>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
68 <tests>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
69 <test>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
70 <!-- test 1: check if identical outputs are produced with default parameters-->
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
71 <output name="out_rules" md5="54806bd44f7a8414e78439e3bb99e6d8"/>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
72 </test>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
73 <test>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
74 <!-- test 2: check if identical outputs are produced with diameters=2,4,6-->
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
75 <param name="diameters" value="2,4,6"/>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
76 <output name="out_rules" md5="12a55e1a3c7822a35ed799afa59b2aa2"/>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
77 </test>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
78 <test>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
79 <!-- test 3: check if identical outputs are produced with csv input rules file-->
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
80 <conditional name="rules">
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
81 <param name="type" value="rules-file"/>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
82 <param name="file" value="rules_in.csv" />
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
83 </conditional>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
84 <output name="out_rules" file="rules_out.csv" ftype="csv" compare="diff"/>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
85 </test>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
86 </tests>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
87 <help><![CDATA[
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
88 RRulesParser
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
89 ============
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
90
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
91 Retrieve the reaction rules from `RetroRules <https://retrorules.org/>`_ extracted from public databases and expressed in the community-standard SMARTS (SMILES arbitrary target specification) format, augmented by a rule representation at different levels of specificity (the atomic environment around the reaction center).
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
92
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
93 The generated output is a file containing reaction rules which are generic descriptions of chemical reactions that can be used in retrosynthesis workflows (e.g. `Retrosynthesis KNIME Workflow <https://www.myexperiment.org/workflows/4987/versions/2.html>`_) in order to enumerate all possible biosynthetic routes connecting a target molecule to its precursors.
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
94
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
95 Input
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
96 -----
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
97
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
98 * **Rule Type**: (string) Return the rules that are in reverse, forward, both direction or from an input user file
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
99 * **rules-file**: (string) Filename of reaction rules provided in csv or tsv format.
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
100 * **input_format**: (string) input file format (csv: default, tsv)
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
101 * **diameters**: (integer list) diameter of the sphere including the atoms around the reacting center (default is including all values: 2,4,6,8,10,12,14,16). The higher is the diameter, the more specific are the rules
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
102
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
103 Ouput
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
104 -----
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
105
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
106 * **out_rules**: (string): file containing the parsed reactions rules (default=csv). It will be zipped if *Compress output* is set to yes.
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
107
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
108 Version
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
109 -------
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
110
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
111 v2.5.0
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
112
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
113 Authors
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
114 -------
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
115
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
116 * **Thomas Duigou**
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
117 * Melchior du Lac
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
118 * Joan Hérisson
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
119
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
120 License
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
121 -------
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
122
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
123 This project is licensed under the MIT License - see the `LICENSE <https://github.com/brsynth/RRParser/blob/master/LICENSE>`_ file for details
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
124
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
125 Acknowledgments
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
126 ---------------
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
127
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
128 * Joan Hérisson
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
129
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
130 ]]></help>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
131 <citations>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
132 <citation type="doi">10.1093/nar/gky940 </citation>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
133 </citations>
19fb8488cdbb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rrparser commit fd0e355b0bef38185e830b0426757596f26c346d
iuc
parents:
diff changeset
134 </tool>