Using Workbench Command

Workbench Command is a set of command-line tools that can be used to perform simple and complex operations within Connectome Workbench.

Full Documentation:

Documentation Home
DRAW GEODESIC LIMITED ROIS AT VERTICES
   wb_command -surface-geodesic-rois
      <surface> - the surface to draw on
      <limit> - geodesic distance limit from vertex, in mm
      <vertex-list-file> - a text file containing the vertices to draw ROIs
         around
      <metric-out> - output - the output metric

      [-gaussian] - generate a gaussian kernel instead of a flat ROI
         <sigma> - the sigma for the gaussian kernel, in mm

      [-overlap-logic] - how to handle overlapping ROIs, default ALLOW
         <method> - the method of resolving overlaps

      [-names] - name the columns from text file
         <name-list-file> - a text file containing column names, one per line

      [-corrected-areas] - vertex areas to use instead of computing them from
         the surface
         <area-metric> - the corrected vertex areas, as a metric

      For each vertex in the list file, a column in the output metric is
      created, and an ROI around that vertex is drawn in that column.  Each
      metric column will have zeros outside the geodesic distance spacified by
      <limit>, and by default will have a value of 1.0 inside it.  If the
      -gaussian option is specified, the values inside the ROI will instead
      form a gaussian with the specified value of sigma, normalized so that the
      sum of the nonzero values in the metric column is 1.0.  The <method>
      argument to -overlap-logic must be one of ALLOW, CLOSEST, or EXCLUDE.
      ALLOW is the default, and means that ROIs are treated independently and
      may overlap.  CLOSEST means that ROIs may not overlap, and that no ROI
      contains vertices that are closer to a different seed vertex.  EXCLUDE
      means that ROIs may not overlap, and that any vertex within range of more
      than one ROI does not belong to any ROI.