| 
8
 | 
     1 <tool id="ABHADDOCK" name="ABHADDOCK" version="1">
 | 
| 
1
 | 
     2   <description>Using ab_haddock_format.py after ANARCI.</description>
 | 
| 
 | 
     3   <command detect_errors="exit_code"><![CDATA[
 | 
| 
2
 | 
     4     source /home/galaxy/data/_conda/bin/activate Ab-HADDOCK;
 | 
| 
8
 | 
     5     python2.7 /home/galaxy/HADDOCK-antibody-antigen/ab_haddock_format.py '${input}' '${output1}' ${chain} > '${output2}';
 | 
| 
2
 | 
     6     source /home/galaxy/data/_conda/bin/deactivate
 | 
| 
1
 | 
     7   ]]></command>
 | 
| 
 | 
     8   <inputs>
 | 
| 
 | 
     9     <param name="input" format="pdb" type="data" label="Select your PDB file."/>
 | 
| 
 | 
    10     <param name="chain" type="text" label="Chain id to use." help="Chain id to use for the HADDOCK-formatted PDB structure."/>
 | 
| 
 | 
    11   </inputs>
 | 
| 
 | 
    12   <outputs>
 | 
| 
8
 | 
    13     <data name="output1" format="pdb" />
 | 
| 
 | 
    14     <data name="output2" format="txt" />
 | 
| 
1
 | 
    15   </outputs>
 | 
| 
 | 
    16   <help>
 | 
| 
 | 
    17 usage: ab_haddock_format.py [-h] pdb out chain
 | 
| 
 | 
    18 
 | 
| 
 | 
    19 Formats the antibody to fit the HADDOCK requirements with the
 | 
| 
 | 
    20 specified chain id and returns the list of residues belonging
 | 
| 
 | 
    21 to the HV loops defined according to the HADDOCK friendly format.
 | 
| 
 | 
    22 
 | 
| 
 | 
    23 *** The antibody has to be numbered according to the Chothia scheme ***
 | 
| 
 | 
    24 
 | 
| 
 | 
    25 Usage:
 | 
| 
7
 | 
    26     python haddock-format.py 'chothia numbered antibody' 'output .pdb file' 'chain_id'
 | 
| 
1
 | 
    27 
 | 
| 
 | 
    28 Example:
 | 
| 
 | 
    29     python 4G6K_ch.pdb 4G6K-HADDOCK.pdb A
 | 
| 
 | 
    30 
 | 
| 
 | 
    31 Author: Francesco Ambrosetti
 | 
| 
 | 
    32 Email: ambrosetti.francesco@gmail.com
 | 
| 
 | 
    33 
 | 
| 
 | 
    34 positional arguments:
 | 
| 
 | 
    35   pdb         Path to the Chothia numbered antibody PDB structure
 | 
| 
 | 
    36   out         Path to the output PDB file
 | 
| 
 | 
    37   chain       Chain id to use for the HADDOCK-formatted PDB structure
 | 
| 
 | 
    38 
 | 
| 
 | 
    39 optional arguments:
 | 
| 
 | 
    40   -h, --help  show this help message and exit
 | 
| 
 | 
    41   </help>
 | 
| 
 | 
    42 </tool>
 | 
| 
 | 
    43 
 |