annotate rp2paths.xml @ 3:bc7e0b9e8707 draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/rp2paths commit de11e4b7851bf4efeafaf6d8369b75ad22607604
author iuc
date Mon, 17 Nov 2025 12:19:39 +0000
parents a5fb27520253
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
1 <tool id="rp2paths" name="RP2paths" version="@TOOL_VERSION@" profile="21.09">
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
2 <description>Enumerate and seperate the different pathways generated by RetroPath2.0</description>
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
3 <macros>
3
bc7e0b9e8707 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/rp2paths commit de11e4b7851bf4efeafaf6d8369b75ad22607604
iuc
parents: 2
diff changeset
4 <token name="@TOOL_VERSION@">2.1.4</token>
0
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
5 </macros>
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
6 <requirements>
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
7 <requirement type="package" version="@TOOL_VERSION@">rp2paths</requirement>
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
8 </requirements>
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
9 <stdio>
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
10 <regex match="TIMEOUT:" level="fatal" />
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
11 <regex match="ERROR:" level="fatal" />
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
12 <regex match="WARNING:" level="warning" />
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
13 </stdio>
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
14 <command detect_errors="exit_code"><![CDATA[
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
15 mkdir out &&
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
16 python -m rp2paths all
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
17 '$rp2_pathways'
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
18 --outdir out
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
19 --timeout '$adv.timeout' &&
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
20 cp out/compounds.txt '$compounds' &&
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
21 if test -f 'out/out_paths.csv'; then
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
22 cp out/out_paths.csv '$master_pathways';
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
23 fi
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
24 ]]></command>
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
25 <inputs>
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
26 <param name="rp2_pathways" type="data" format="csv" label="RetroPath2.0 Pathways" help="Retrosynthesis network CSV file outputted by the RetroPath2 tool which desribes the network linking the targeted compound to the chassis."/>
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
27 <section name="adv" title="Advanced Options" expanded="false">
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
28 <param name="timeout" type="integer" value="1800" label="Time Out" help="Time out before killing a process (in seconds), default: 30 minutes." />
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
29 </section>
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
30 </inputs>
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
31 <outputs>
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
32 <data name="master_pathways" format="csv" label="${tool.name} on ${rp2_pathways.name} : Enumerated Pathways" />
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
33 <data name="compounds" format="tabular" label="${tool.name} on ${rp2_pathways.name} : Compounds" />
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
34 </outputs>
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
35 <tests>
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
36 <test>
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
37 <!-- test 1: check if identical outputs are produced with default parameters -->
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
38 <param name="rp2_pathways" value="retropath2_pathways.csv" />
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
39 <output name="master_pathways" file="rp2paths_pathways.csv" ftype="csv" compare="diff"/>
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
40 <output name="compounds" file="rp2paths_compounds.tsv" ftype="tabular" compare="diff"/>
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
41 </test>
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
42 </tests>
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
43 <help><![CDATA[
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
44 RP2paths
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
45 ========
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
46
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
47
1
8b77ca41f6af planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c1706f45cf4918846b73069a7e984b771605d3aa
iuc
parents: 0
diff changeset
48 **RP2paths** extracts the set of heterologous pathways that lies in a metabolic space file outputted by the "RetroPath2.0 workflow" into individual pathways and enumerate them.
8b77ca41f6af planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c1706f45cf4918846b73069a7e984b771605d3aa
iuc
parents: 0
diff changeset
49 This analysis is required to ensure that only pathways fulfilling all the precursor needs are retained for further analysis.
8b77ca41f6af planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c1706f45cf4918846b73069a7e984b771605d3aa
iuc
parents: 0
diff changeset
50 This tool takes as input a retrosynthesis network in the CSV file produced by `RetroPath2.0 <https://toolshed.g2.bx.psu.edu/view/tduigou/retropath2/9c8ac9980bd6>`_ ,
8b77ca41f6af planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c1706f45cf4918846b73069a7e984b771605d3aa
iuc
parents: 0
diff changeset
51 and outputs the enumerated pathways (using `EC numbers <https://en.wikipedia.org/wiki/Enzyme_Commission_number>`_ ) as well as the structure of involved chemicals (as SMILES: Simplified Molecular-Input Line-Entry System) in TSV format.
0
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
52
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
53
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
54 An example of **enumerated pathways** is illustred in the figure below for the production of a target molecule: `Styrene <https://en.wikipedia.org/wiki/Styrene>`_. **Compounds** are represented by their structures, and **reactions** by their `EC numbers <https://en.wikipedia.org/wiki/Enzyme_Commission_number>`_.
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
55
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
56
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
57 .. image:: ${static_path}/images/enumerated_pathways.png
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
58 :width: 40 %
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
59 :align: center
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
60
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
61 |
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
62
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
63 Input
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
64 -----
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
65
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
66 Required information:
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
67
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
68 * **RetroPath2.0 Pathways**\ : Retrosynthesis network CSV file outputted by the RetroPath2 tool which desribes the network linking the targeted compound to the chassis.
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
69
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
70 Advanced options:
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
71
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
72 * **Time Out**\ : (integer) Timeout before killing a process (in seconds), default: 30 minutes.
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
73
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
74 Output
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
75 ------
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
76
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
77 * **Enumerated Pathways**\ : Describes all the indiviudal enumerated pathways that produce the compound of interest.
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
78 * **Compounds**\ : Describes the structure of all the chemical species involved in all pathways as SMILES (Simplified Molecular-Input Line-Entry System).
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
79
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
80 Project Links
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
81 ---------------------
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
82
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
83 * `GitHub <https://github.com/brsynth/rp2paths>`_
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
84
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
85 License
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
86 -------
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
87
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
88 `MIT <https://github.com/brsynth/rp2paths/blob/master/LICENSE.md>`_
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
89
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
90 Acknowledgments
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
91 ---------------
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
92
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
93 * Joan Hérisson
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
94
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
95 ]]></help>
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
96 <citations>
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
97 <citation type="doi">10.1016/j.ymben.2017.12.002</citation>
d468c3b714e5 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c7d83bf1145bcd43d933d91d5a39af58b8f1834c
iuc
parents:
diff changeset
98 </citations>
1
8b77ca41f6af planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rp2paths commit c1706f45cf4918846b73069a7e984b771605d3aa
iuc
parents: 0
diff changeset
99 </tool>