view modify/ob_genProp.xml @ 2:125da3a296ca draft default tip

Uploaded
author bgruening
date Wed, 15 Jul 2015 12:13:08 -0400
parents 527ecd2fc500
children
line wrap: on
line source

<tool id="ctb_ob_genProp" name="Compute physico-chemical properties" version="1.0">
    <description>for a set of molecules</description>
    <parallelism method="multi" split_inputs="infile" split_mode="to_size" split_size="10000" shared_inputs="" merge_outputs="outfile"></parallelism>
    <requirements>
        <requirement type="package" version="2.3.2">openbabel</requirement>
        <requirement type="package" version="0.1">cheminfolib</requirement>
    </requirements>
    <command interpreter="python">
<![CDATA[
    ob_genProp.py
      -i "${infile}"
      --iformat "${infile.ext}"
      --oformat "${output_opts.output_format_types}"
      #if $output_opts.header.value:
        --header $output_opts.header
      #end if
      -o "${outfile}"
]]>
  </command>
  <inputs>
    <param name="infile" type="data" format="sdf,mol,mol2,cml,inchi,smi" label="Select input file with multiple molecules."/>
    <conditional name="output_opts">
      <param name="output_format_types" type="select" label="Specify output format file">
        <option value="table">Tabular format</option>
        <option value="sdf" selected="True">sdf</option>
      </param>
      <when value="table">
        <param name="header" type="boolean" checked="False" label="Print the headers of the table as the first row of the table"/>
      </when>
      <when value="sdf">
        <param name="header" type="hidden"/>
      </when>
    </conditional>
  </inputs>
  <outputs>
    <data format="tabular" name="outfile" label="${tool.name} on ${on_string}">
        <change_format>
            <when input="output_opts.output_format_types" value="sdf" format="sdf"/>
        </change_format>
    </data>
  </outputs>
  <tests>
    <test>
        <param name="infile" ftype="sdf" value="CID_2244.sdf"/>
        <param name="output_format_types" value="sdf" />
        <output name="outfile" ftype="sdf" file="ob_genprop_on_CID2244.sdf" />
    </test>
    <test>
        <param name="infile" ftype="sdf" value="CID_2244.sdf"/>
        <param name="output_format_types" value="table" />
        <param name="header" value="true" />
        <output name="outfile" ftype="sdf" file="ob_genprop_on_CID2244.tabular" />
    </test>
  </tests>
  <help>
<![CDATA[

.. class:: infomark

**What this tool does**

Computes several physico-chemical properties for a set of molecules.

The following physico-chemical properties and descriptors are computed for each molecule:

	- number of hydrogen-bond donor and acceptor groups

	- number of rotatable bonds

	- logP

	- number of rings

	- number of heavy atoms

	- molecular weight

	- total Polar Surface Area

	- molecular refractivity

	- Canonical SMILES

	- InChI string

	- InChI-Key

	- Spectrophores(TM)

-----

.. class:: infomark

**Input**

- SDF_
- MOL2_

.. _SDF: http://en.wikipedia.org/wiki/Chemical_table_file
.. _MOL2: http://www.tripos.com/index.php?family=modules,SimplePage,Mol2_File_Format2009

3D coordinates of the molecules have to be provided.

-----

.. class:: warningmark

**Hint** the generation of Spectrophores(TM) requires the previous addition of explicit hydrogen atoms and the proper definition of 3D coordinates. The user is directed towards the corresponding tools if accurate Spectrophores(TM) descriptors are required.

-----

.. class:: infomark

**Output**

Either a SD-file containing several computed physico-chemical properties stored as metadata or a tabular file with the metadata stored in columns.

-----

.. class:: infomark

**Cite**

N M O'Boyle, C Morley and G R Hutchison - `Pybel: a Python wrapper for the OpenBabel cheminformatics toolkit`_

Silicos_ - |Spectrophores (TM)| is a registered tool implemented in the open-source OpenBabel.

.. |Spectrophores (TM)| unicode:: Spectrophores U+2122

`Open Babel`_

.. _Open Babel: http://openbabel.org/wiki/Main_Page
.. _`Pybel: a Python wrapper for the OpenBabel cheminformatics toolkit`: http://www.biomedcentral.com/content/pdf/1752-153X-2-5.pdf
.. _Silicos: http://openbabel.org/docs/dev/Fingerprints/spectrophore.html


]]>
  </help>
</tool>