comparison rdock.xml @ 0:63f3f7b17aa4 draft default tip

planemo upload for repository https://github.com/TGAC/earlham-galaxytools/tree/master/tools/rdock/ commit d3da4ff3bfb86ce0686a87c4987e94486854d839
author earlhaminst
date Fri, 12 May 2017 09:56:42 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:63f3f7b17aa4
1 <tool id="rdock" name="rDock" version="1.0">
2 <description>Binding Mode Prediction in Proteins/RNA</description>
3 <requirements>
4 <requirement type="package" version="2013.1">rDock</requirement>
5 </requirements>
6 <command detect_errors="exit_code"><![CDATA[
7 ln -s '$inputmol2' inputmol2.mol2 &&
8 ln -s '$inputsd' ligand.sd &&
9 sed 's|RECEPTOR_FILE.*|RECEPTOR_FILE inputmol2.mol2|g' < '$inputprm' | sed 's|REF_MOL.*|REF_MOL ./ligand.sd|g' > new.prm &&
10 rbcavity -r new.prm -was &&
11 rbdock -r new.prm -p dock.prm -n 100 -i '$inputsd' -o output_docking_out &&
12 sdsort -n -f'SCORE' output_docking_out.sd > sorted.sd &&
13 sdrmsd '$inputsd' sorted.sd > '$output_rdock'
14 ]]></command>
15 <inputs>
16 <param name="inputprm" argument="-r" type="data" format="prm" label="Receptor param file (contains active site params)" />
17 <param name="inputmol2" type="data" format="mol2" label="MOL2 file" />
18 <param name="inputsd" argument="-i" type="data" format="sdf" label="Ligand SD file" />
19 </inputs>
20 <outputs>
21 <data name="output_rdock" format="tabular" />
22 </outputs>
23 <tests>
24 <test>
25 <param name="inputprm" value="1sj0_rdock.prm" />
26 <param name="inputmol2" value="1sj0_rdock.mol2" />
27 <param name="inputsd" value="1sj0_ligand.sd" />
28 <output name="output_rdock">
29 <assert_contents>
30 <has_n_columns n="2" />
31 </assert_contents>
32 </output>
33 </test>
34 </tests>
35 <help><![CDATA[
36 **What it does**
37
38 `rDock`_ is a fast and versatile open source docking program that can be used to dock small molecules against proteins and nucleic acids.
39 It is designed for High Throughput Virtual Screening (HTVS) campaigns and Binding Mode prediction studies.
40
41 .. _rDock: http://rdock.sourceforge.net/
42 ]]></help>
43 <citations>
44 <citation type="doi">10.1371/journal.pcbi.1003571</citation>
45 </citations>
46 </tool>