diff CADDSuite/galaxyconfigs/tools/PDBCutter.xml @ 3:bb26168c5715

Uploaded
author marcel
date Tue, 12 Jul 2011 10:53:07 -0400
parents
children af446ca2d5c6
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/CADDSuite/galaxyconfigs/tools/PDBCutter.xml	Tue Jul 12 10:53:07 2011 -0400
@@ -0,0 +1,46 @@
+
+<!--This is a configuration file for the integration of a CADDSuite tool into Galaxy (http://usegalaxy.org). This file was automatically generated using GalaxyConfigGenerator, so do not bother to make too many manual modifications.-->
+<tool id="pdbcutter" name="PDBCutter" version="0.95">
+    <description>separate ligand and receptor</description>
+    <command interpreter="bash"><![CDATA[../../PDBCutter 
+#if str( $i ) != ''  and str( $i ) != 'None' :
+   -i "$i"
+#end if
+#if str( $rec ) != ''  and str( $rec ) != 'None' :
+   -rec "$rec"
+#end if
+#if str( $lig ) != ''  and str( $lig ) != 'None' :
+   -lig "$lig"
+#end if
+#if str( $lig_chain ) != ''  and str( $lig_chain ) != 'None' :
+   -lig_chain "$lig_chain"
+#end if
+#if str( $lig_name ) != ''  and str( $lig_name ) != 'None' :
+   -lig_name "$lig_name"
+#end if
+#if str( $rm_ch ) != ''  and str( $rm_ch ) != 'None' :
+   -rm_ch "$rm_ch"
+#end if
+#if str( $rm_res ) != ''  and str( $rm_res ) != 'None' :
+   -rm_res "$rm_res"
+#end if
+ | tail -n 5
+]]></command>
+    <inputs>
+        <param name="i" optional="false" label="input pdb-file" type="data" format="pdb"/>
+        <param name="lig_chain" optional="false" label="chain-name of ligand" area="true" type="text" size="1x15"/>
+        <param name="lig_name" optional="false" label="ligand name" area="true" type="text" size="1x15"/>
+        <param name="rm_ch" optional="true" label="Optional: protein chains that are to be deleted" area="true" type="text" size="1x15"/>
+        <param name="rm_res" optional="true" label="Optional: pdb-residues that are to be deleted (e.g. water or ions)" area="true" type="text" size="1x15"/>
+    </inputs>
+    <outputs>
+        <data name="rec" format="pdb"/>
+        <data name="lig" format="pdb"/>
+    </outputs>
+    <help>This tool splits a given pdb-file into two files containing receptor and reference ligand, respectively.
+
+The name of the reference ligand (exactly as it appears in the pdb-file) and the name of its chain need to be specified by '-lig_name' and '-lig_chain'.
+Optionally, chains (e.g. in case of multimers) or pdb-residues (e.g. water or ions) that you don't need can be deleted from the receptor. In this case, specify their names with '-rm_ch' or '-rm_res'.
+
+Output of this tool is one pdb-file containing the receptor-structure, i.e. the protein w/o reference ligand and w/o undesired chains/residues (if any were specified), and one pdb-file containing the reference ligand.</help>
+</tool>
\ No newline at end of file