annotate PLIDflow/pdb2pqr_plidflow.xml @ 6:795e11fac81b draft default tip

Included new tools for standardization
author bitlab
date Wed, 22 Apr 2020 06:12:00 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6
795e11fac81b Included new tools for standardization
bitlab
parents:
diff changeset
1 <tool id="pdb2pqr_plidflow" name="PLIDflow: PDB2PQR">
795e11fac81b Included new tools for standardization
bitlab
parents:
diff changeset
2 <description>Converts a pdb to pqr</description>
795e11fac81b Included new tools for standardization
bitlab
parents:
diff changeset
3 <inputs>
795e11fac81b Included new tools for standardization
bitlab
parents:
diff changeset
4 <param name="receptor_pdb" type="data" format="pdb" label="Receptor PDB file" help="Preparing the receptor involves adding gasteiger charges and adding hydrogens. First it will be processed by pdb2pqr."/>
795e11fac81b Included new tools for standardization
bitlab
parents:
diff changeset
5 </inputs>
795e11fac81b Included new tools for standardization
bitlab
parents:
diff changeset
6 <command><![CDATA[
795e11fac81b Included new tools for standardization
bitlab
parents:
diff changeset
7 swpath=\$(which pdb2pqr.py) ;
795e11fac81b Included new tools for standardization
bitlab
parents:
diff changeset
8
795e11fac81b Included new tools for standardization
bitlab
parents:
diff changeset
9 ${__tool_directory__}/scripts/preparePDB2PQR_plidflow.sh ${receptor_pdb} ${receptor_pdb}.prepdb ;
795e11fac81b Included new tools for standardization
bitlab
parents:
diff changeset
10
795e11fac81b Included new tools for standardization
bitlab
parents:
diff changeset
11 (python2.7 \$swpath --ff=amber --ffout=amber --verbose --chain --ph-calc-method=propka --with-ph=7.0 --drop-water ${receptor_pdb}.prepdb ${pdb_processed}.pqr ) &> /dev/null ;
795e11fac81b Included new tools for standardization
bitlab
parents:
diff changeset
12
795e11fac81b Included new tools for standardization
bitlab
parents:
diff changeset
13 rm ${receptor_pdb}.prepdb ;
795e11fac81b Included new tools for standardization
bitlab
parents:
diff changeset
14
795e11fac81b Included new tools for standardization
bitlab
parents:
diff changeset
15 ${__tool_directory__}/scripts/includeAtom3.sh ${__tool_directory__}/scripts/table ${pdb_processed}.pqr > ${pdb_processed} ;
795e11fac81b Included new tools for standardization
bitlab
parents:
diff changeset
16
795e11fac81b Included new tools for standardization
bitlab
parents:
diff changeset
17 rm ${pdb_processed}.pqr ;
795e11fac81b Included new tools for standardization
bitlab
parents:
diff changeset
18
795e11fac81b Included new tools for standardization
bitlab
parents:
diff changeset
19 ]]></command>
795e11fac81b Included new tools for standardization
bitlab
parents:
diff changeset
20 <outputs>
795e11fac81b Included new tools for standardization
bitlab
parents:
diff changeset
21 <data name="pdb_processed" format="pdb" label="${receptor_pdb.name}_processed"/>
795e11fac81b Included new tools for standardization
bitlab
parents:
diff changeset
22 </outputs>
795e11fac81b Included new tools for standardization
bitlab
parents:
diff changeset
23 </tool>