Google

CCP4MAPWISH (CCP4: Supported Program)

NAME

ccp4mapwish - customised version of wish with additional commands to read CCP4 mapfiles and display contoured sections on a Tk canvas widget

SYNOPSIS

ccp4mapwish ?fileName?

DESCRIPTION

ccp4mapwish is a customised version of the wish program, consisting of the Tcl command language, the Tk toolkit, the CCP4 MapSlicer Command Library, and a main program that reads commands from standard input or from a file. It creates a main window and then processes Tcl commands.

The MapSlicer Command Library can also exist as a loadable library libccp4map.so, which can be imported into wish at run-time using the Tcl load command.

The program and library are currently supported on three major platforms (Irix, OSF1, Linux). Please contact CCP4 if you are interested in using either on other platforms.

USAGE

The MapSlicer command library used in ccpmapwish offers a number of commands in addition to those found in standard TCL/Tk:

readmap, deletemap, mapinfo, section

readmap ?mapid? ?mapfile?

Tcl command to load a map into memory from the specified file

Arguments:

   mapid    "handle" string identfying the map in memory
   mapfile  file to read from

Returns:

   0  = completed ok
   -1 = map already loaded
   -2 = error reading from map file
   -3 = couldn't allocate memory

mapinfo ?mapid ?keyword??

Tcl command to interrogate the map held in memory.

mapid is the handle identifying the map stored in memory; if no mapid is given then all the currently stored mapids are returned as a list.

A maximum of one keyword is allowed:

   [none]     = returns 1 if the map is currently held in memory
   spacegroup = returns spacegroup number
   maximum    = returns maximum density in map
   minimum    = returns minimum density
   mean       = returns mean density
   rms        = returns rms density
   cell       = returns cell info as a list of 6 numbers
   limits     = return start...stop on x..y..z as a list of 6 numbers
   map        = writes out map...careful!
   title      = returns the title from the map header
   grid       = returns the number of grid points along x,y,z cell
                edges as list of 3 numbers

Returns:

   -1 = no map loaded
   Otherwise returns requested info, see keywords.

deletemap mapid

Tcl command to release the memory holding the map and remove it from the array of stored maps.

mapid is the handle identifying the map which is to be deleted.

Returns:

   -1 = no map currently stored
   0  = successful

section <name> option ?arg arg ...?

This implements the Tcl command section for manipulating CCP4 section structures in memory.

<name> is the handle id for a section structure in memory. option and the args determine the exact behaviour of the command. The following options are available:

init, configure, contours, coords, render, delete, exists, info

In addition the init and configure options can accept a number of extra arguments.

section <name> init <mapid> <axis> <section> ?<section2> ?<slab_step>?? ?option value ...?

Initialise a new section structure called <name>, with section number <section> on axis <axis> from map <mapid>

If <section2> is also specified then the section is actually a slab of sections from <section> to <section2>. An optional third number specifies the slab_step size between the two limits.

See below for details of additional optional arguments.

section <name> configure ?option? ?value? ?option value ...?

Change the settings in the existing section structure <name> If option is specified with no value then the current setting is returned.

See below for details of additional optional arguments.

section <name> contours <type> range <min> <max> <interval> ?-negcontours?
section <name> contours <type> list value ?value ...? ?-negcontours?
section <name> contours

Set or update the contour levels for section <name>

	 <type> is one of abs, sigma or frac

	 range: contour levels will be set starting from <min> in steps
	        of <interval> upto <max>
	 list:  contour levels as an explicit list of values

	 Without any arguments, return the contours as a list of 
	 absolute values.

section <name> coords <canvas> x y ?-precision value?

Return the fractional coordinates in section <name> corresponding to the canvas coordinates x,y as rendered on <canvas>

The optional -precision argument specifies the number of decimal places to return.

section <name> render <canvas> ?arg arg ...?

Draw contours on <canvas> with the settings in <name>

	 -scale <scale> : sets the scaling to <scal><units>/Angstrom
	 if no units are specified then defaults to pixels

section <name> delete

Delete the section structure <name> from memory

section <name> exists

Check whether the section <name> currently exists

Returns 1 if section is registered, 0 otherwise

section <<name> info option

Inquiry about general properties of the section <name>

option can be one of:

 
         exists    : return 1 if <name> exists, 0 otherwise
         extent    : return limits of the section within the map
	             nb these may be different from those used in
		     the display (see config -limits)
	 mapid     : return the id of the parent map

Arguments

The init and configure options can take a number of additional optional arguments:

   -axis <axis>            : set axis from which to take section
   -bbox <boolean>         : set whether bounding box is drawn
   -grid <boolean>         : set whether grid lines are drawn
   -gridlabels <boolean>   : set whether grid labels are drawn
   -gridspacing <u> <v>    : set the spacing of gridlines on each axis
   -limits <x1> <x2> <y1> <y2> : set limits of the section in the display
	                     If <x1>...<y2> are all > 1 then the limits
			     are taken to be in grid units; otherwise they
			     are taken as fractional units.
   -precision <ndp>        : set the number of d.p. for gridlabels
   -section <sec> ?<sec2> ?<step>?? : change section number or slab
                             definition

TECHNICAL DETAILS

This is a substantially rewritten version of the ccp4mapwish compared with the version in CCP4 4.1, and there are significant differences both in the API and the underlying code.

ccp4mapwish is built from a combination of original C and Fortran code, it also requires the following files and libraries:

  1. tcl.h file for tcl version 8.0 or better
  2. Tcl and Tk libraries (libtcl and libtk respectively) version 8.0 or better
  3. Fortran run-time libraries: these are system-specific:
         OSF1: libUfor and libfor
         IRIX : libftn
         Linux/GNU: libg2c
    
    The Fortran compiler man pages should give information on which libraries are used.
  4. X11 libraries
  5. Maths library (libm)
  6. CCP4 library.h file
  7. CCP4 library (libccp4)

Some systems may require additional libraries (e.g. Linux). It is hoped that future versions will dispense entirely with the Fortran component (currently required for reading map files), and thus greatly simplify the build.

SEE ALSO

mapslicer

EXAMPLES

Example script to display a section:

# First set up a canvas to display sections
set canv1 [canvas .c]
pack $canv1
# Read in a map with name m1
readmap m1 toxd.map
# Initialise a section called s1 from the map
section s1 init z 5
# Initialise contour levels to display
section s1 contours sigma range 1.0 5.0 0.5 -negcontours
# Display the section in the canvas
section s1 render $canv1 -scale 2mm

AUTHOR

Peter Briggs, CCP4.