Workbench Command is a set of command-line tools that can be used to perform simple and complex operations within Connectome Workbench.
MERGE METRIC FILES INTO A NEW FILE
wb_command -metric-merge
<metric-out> - output - the output metric
[-metric] - repeatable - specify an input metric
<metric-in> - a metric file to use columns from
[-column] - repeatable - select a single column to use
<column> - the column number or name
[-up-to] - use an inclusive range of columns
<last-column> - the number or name of the last column to include
[-reverse] - use the range in reverse order
Takes one or more metric files and constructs a new metric file by
concatenating columns from them. The input metric files must have the
same number of vertices and same structure.
Example: wb_command -metric-merge out.func.gii -metric first.func.gii
-column 1 -metric second.func.gii
This example would take the first column from first.func.gii, followed by
all columns from second.func.gii, and write these columns to
out.func.gii.