.. index:: single: Pharmacophores; 3D Visualization single: Pharmacophores; Input single: Pharmacophores; Feature Processing single: Pharmacophore Features; Orientation Property single: Data Formats; PML single: Data Formats; CDF single: Data Formats; PLY single: Data Formats; WRL single: Data Formats; STL single: Data Formats; R3D Pharmacophore 3D Visualization ============================== The script *gen_ph4_3d_vis.py* generates 3D visual representations of pharmacophores read from an input file and writes the resulting vector graphics data to one or more (in case of multiple input pharmacophores) output file(s). **Synopsis** :program:`python` *gen_ph4_3d_vis.py* [-h] -i -o [-c] [-d] [-t] **Mandatory options** -i Input pharmacophore file (.pml, .cdf) -o 3D visualization data output file (.r3d, .stl, .ply, .wrl) **Other options** -h, --help Show help message and exit -c Do not output spheres representing the feature centers (default: false) -d Make vector and plane features undirected (default: false) -t Disable feature transparency (default: false) **Example** Generation of a Raster3D file for the pharmacophore of ligand MIT (complex `1DWC `_ ): .. code-block:: shell $ python gen_ph4_3d_vis.py -i 1dwc_MIT_ph4.pml -o 1dwc_MIT_ph4.r3d | :download:`1dwc_MIT.sdf ` | :download:`1dwc_MIT_ph4.pml ` | :download:`1dwc_MIT_ph4.r3d ` .. figure:: /graphics/pymol_MIT_ph4_vis.png :scale: 50% :alt: PyMOL visualization example PyMOL displaying the structure and pharmacophore of ligand MIT **Code** .. literalinclude:: /downloads/gen_ph4_3d_vis.py :language: python :linenos: :lines: 19- :download:`Download source file`