User Tools

Site Tools


sift:command_line

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
sift:command_line [2024/09/04 16:53] sgrangersift:command_line [2025/04/04 19:57] (current) sgranger
Line 5: Line 5:
   * Creating a bat file it is possible to completely automate processing   * Creating a bat file it is possible to completely automate processing
 ===== Running Sift From Command Line ====== ===== Running Sift From Command Line ======
-To start sift in command line mode, open a command line console, navigate to sifts install directory and run sift with the argument **--NoGUI**+To start sift in command line mode, open a command line console, navigate to sifts install directory and run sift with any argument that starts with a single dash (-) if you do not want to run any commands as Sift is launched you can instead pass **-NoGUI**
 ==== Command Line Overview ==== ==== Command Line Overview ====
-  * Commands are prefixed with two dashes (--) these are considered a reserved character, so file and parameter names can not contain two consecutive dashes+  * Commands are prefixed with a dash these are considered a reserved character, but Sift will ignore any dashes that are within double quotes so file-name.txt will cause an error, where "file-name.txt" will not.
   * Commands and parameters are case insensitive   * Commands and parameters are case insensitive
-  * any parameters containing a space (e.g. a folder path) must be wrapped in double quotes ("")+  * any parameters containing a space or a dash (e.g. a folder path) must be wrapped in double quotes ("")
   * Command parameters are named not positional, so the order they are passed does not matter   * Command parameters are named not positional, so the order they are passed does not matter
 +  * Some commands have a default parameter, in these cases the parameter name can be omitted, for example with -loadLib the directory parameter name is optional. so either of the following will work: -loadLib directory "folder path" or -loadLib "folder path". These parameters are marked as default in the list below
   * Commands can be entered all at once in the same command that launches sift, or one at a time   * Commands can be entered all at once in the same command that launches sift, or one at a time
-  * Enter the command **--Help** to get a list of all available commands +  * Enter the command **-Help** to get a list of all available commands 
-  * Pass the parameter **--Help** to any command to get a list and description of all of its parameters +  * Pass the parameter **Help** to any command to get a list and description of all of its parameters 
-  * To exit pass the command **--Exit**, or press **Ctrl + C** to quickly exit at any time (Sift will exit once the current command finishes executing)+  * To exit pass the command **-Exit**, or press **Ctrl + C** to quickly exit at any time (Sift will exit once the current command finishes executing) 
 +  * Most commands have one or more aliases that will be accepted
  
 ===== Commands ===== ===== Commands =====
Line 20: Line 22:
  
 ---- ----
-==== LoadLib ====+==== -LoadLib / -l ====
 ---- ----
 Load in a library of CMZs Load in a library of CMZs
 === Parameters === === Parameters ===
-== Directory (Required) ==+== Directory (Required/Default) ==
 Path to the directory containing the CMZs to be loaded, all sub-directories will be searched as well. Path to the directory containing the CMZs to be loaded, all sub-directories will be searched as well.
 === Example === === Example ===
-<code>--LoadLib directory "C:\library folder"</code>+<code>-LoadLib directory "C:\library folder"</code>
  
 ---- ----
-==== LoadQuery ====+==== -LoadQuery  / -q ====
 ---- ----
 Load a saved query from a .q3d file Load a saved query from a .q3d file
 === Parameters === === Parameters ===
-== File (Required) ==+== File (Required/Default) ==
 The path to the .q3d file containing the query The path to the .q3d file containing the query
 === Example === === Example ===
-<code>--LoadQuery file "C:\library folder\query.q3d"</code>+<code>-LoadQuery file "C:\library folder\query.q3d"</code>
  
 ---- ----
-==== RunLOF ====+==== -RunLOF / -lof ====
 ---- ----
 Run Local Outlier Factor Run Local Outlier Factor
 === Parameters === === Parameters ===
-== **AutoExclude** ==+== AutoExclude ==
 If passed any outliers found will be excluded automatically If passed any outliers found will be excluded automatically
-== **Grouping** ==+== Grouping ==
 How should data be grouped before running? \\ How should data be grouped before running? \\
   * Combined Groups: All data points will be compared   * Combined Groups: All data points will be compared
   * Groups: Data will be compared within groups   * Groups: Data will be compared within groups
   * Workspace: Data will be compared within workspaces   * Workspace: Data will be compared within workspaces
-**Default:** Combined Groups +<sub>//Default:// Combined Groups</sub> 
-== **ManualThreshold** == +== ManualThreshold == 
-The threshold to consider when searching for outliers +The threshold to consider when searching for outliers \\ 
-**Default:** 2.00 +<sub>//Default:// 2.00</sub> 
-== **NumNeighbors** == +== NumNeighbors == 
-How many neighbors should each point be compared to? +How many neighbors should each point be compared to? \\ 
-**Default:** 10 +<sub>//Default:// 10</sub> 
-== **numPasses** == +== numPasses == 
-How many iterations of the test should be run +How many iterations of the test should be run \\ 
-== **NumPCs** == +<sub>//Default:// 1</sub> 
-How many principal components should the test be run on +== NumPCs == 
-== **PCsVariance** == +How many principal components should the test be run on \\ 
-Determine the number of PCs by variance explained (replaces NumPCs if used) +<sub>//Default:// 2</sub> 
-== **ScaleToVariability** == +== PCsVariance == 
-Scale all calculated values to the variability explained by the PC +Determine the number of PCs by variance explained (replaces NumPCs if used) \\ 
-=== **Example** === +<sub>//Default:// 95.0</sub> 
-<code>--RunLOF autoExclude manualThreshold "3" numNeighbors "20" numPasses "2" numPCs "2" scaleToVariability</code>+== ScaleToVariability == 
 +If passed scale all calculated values to the variability explained by the PC 
 +=== Example === 
 +<code>-RunLOF autoExclude manualThreshold "3" numNeighbors "20" numPasses "2" numPCs "2" scaleToVariability</code>
  
 ---- ----
-==== RunKMeans ====+==== -RunKMeans / -kmeans ====
 ---- ----
 Run K-Means clustering Run K-Means clustering
 === Parameters === === Parameters ===
 == Clusters == == Clusters ==
-How many clusters to sort the data into +How many clusters to sort the data into \\ 
 +<sub>//Default:// 2</sub>
 == CustomSeed == == CustomSeed ==
-Provide a seed for the random first centroid (produces repeatable results)+If provided use as a seed for the random first centroid (produces repeatable results)
 == Grouping == == Grouping ==
 How should data be grouped before running: How should data be grouped before running:
Line 83: Line 89:
   * Groups: Data will be compared within groups   * Groups: Data will be compared within groups
   * Workspaces: Data will be compared within workspaces   * Workspaces: Data will be compared within workspaces
 +<sub>//Default:// Combined Groups</sub>
 ==  Iterations == ==  Iterations ==
-How many iterations of the test should be run+How many iterations of the test should be run \\ 
 +<sub>//Default:// 5</sub>
 == NumPCs == == NumPCs ==
-The number of principal components to run the test on+The number of principal components to run the test on \\ 
 +<sub>//Default://2</sub>
 == PCsVariance == == PCsVariance ==
-Determine the number of principal components by variance explained (replaces NumPCs if used)+Determine the number of principal components by variance explained (replaces NumPCs if used) \\ 
 +<sub>//Default:// 95.0</sub>
 == ScaleToVariability == == ScaleToVariability ==
-Scale all calculated values to the variability explained by the PC+If passed scale all calculated values to the variability explained by the PC
 === Example === === Example ===
-<code>--RunKMeans clusters "3" customerSeed "0" grouping "combined groups" iterations "1" numPCs "2" scaleToVariability</code>+<code>-RunKMeans clusters "3" customerSeed "0" grouping "combined groups" iterations "1" numPCs "2" scaleToVariability</code>
  
 ---- ----
-==== RunSPE ====+==== -RunSPE / -spe ====
 ---- ----
 Run squared prediction error Run squared prediction error
 ===Parameters=== ===Parameters===
 == AlphaValue == == AlphaValue ==
-The alpha threshold used to determine outliers: 0.1, 0.05, 0.025, 0.01, 0.005+The alpha threshold used to determine outliers: 0.1, 0.05, 0.025, 0.01, 0.005 \\ 
 +<sub>//Default:// 0.05</sub>
 == AutoExclude == == AutoExclude ==
 If passed any outliers will be excluded automatically If passed any outliers will be excluded automatically
 == numPCs ==  == numPCs == 
-The number of Principal Components to run the test on+The number of Principal Components to run the test on // 
 +<sub>//Default:// 2</sub>
 == PCsVariance == == PCsVariance ==
-scale calculated values to variability explained+scale calculated values to variability explained // 
 +<sub>//Default:// 95.0</sub>
 === Example === === Example ===
-<code>--RunSPE alphaValue "0.005" autoExclude numPCs "2"</code>+<code>-RunSPE alphaValue "0.005" autoExclude numPCs "2"</code>
  
 ---- ----
-==== RunMah ====+==== -RunMah / -mah ====
 ---- ----
 Run a Mahalanobis distance test Run a Mahalanobis distance test
 === Parameters === === Parameters ===
 == AlphaValue == == AlphaValue ==
-The threshold used to determine outliers: 0.1, 0.05, 0.025, 0.01, 0.005+The threshold used to determine outliers: 0.1, 0.05, 0.025, 0.01, 0.005 \\ 
 +<sub>//Default:// 0.05</sub>
 == AutoExclude == == AutoExclude ==
 If passed any outliers found will be excluded automatically If passed any outliers found will be excluded automatically
Line 124: Line 138:
   * Groups: Data will be compared within groups   * Groups: Data will be compared within groups
   * Workspace: Data will be compared within workspaces   * Workspace: Data will be compared within workspaces
 +<sub>//Default:// Combined Groups</sub>
 == NumPasses == == NumPasses ==
-How many iterations of the test should be run+How many iterations of the test should be run \\ 
 +<sub>//Default:// 1</sub>
 == NumPCs == == NumPCs ==
-The number of principal components to run the test on+The number of principal components to run the test on \\ 
 +<sub>//Default:// 2</sub>
 == PCsVariance == == PCsVariance ==
-Determining the number of PCs by variance explained+Determining the number of PCs by variance explained \\ 
 +<sub>//Default:// 95.0</sub>
 == ScaleToVariance == == ScaleToVariance ==
-scale calculated values to variability explained+If passed scale calculated values to variability explained
 === Example === === Example ===
-<code>--LoadMah alphaValue "0.1" autoExclude grouping "groups" numPasses "3" numPCs "2" scaleToVariance</code>+<code>-LoadMah alphaValue "0.1" autoExclude grouping "groups" numPasses "3" numPCs "2" scaleToVariance</code>
  
 ---- ----
-==== RegisterCurves ====+==== -RegisterCurves / -rc ====
 ---- ----
 === Parameters === === Parameters ===
Line 160: Line 178:
 The name for registered curve group created The name for registered curve group created
 === Example === === Example ===
-<code>--RegisterCurves max name "AnkleAngleX_Reg"</code>+<code>-RegisterCurves max name "AnkleAngleX_Reg"</code>
  
 ---- ----
-==== CreateGLM ====+==== -CreateGLM / -glm ====
 ---- ----
 Create a General Linear Model Create a General Linear Model
 === Parameters === === Parameters ===
 == Grouping == == Grouping ==
-The grouping used for the model: Workspace / Group +The grouping used for the model: Workspace / Group \\ 
-== Name (Required) ==+<sub>//Default:// Group</sub> 
 +== Name (Required/Default) ==
 The name of the GLM being created The name of the GLM being created
 === Example === === Example ===
-<code>--CreateGLM name "New GLM" grouping "group"</code>+<code>-CreateGLM name "New GLM" grouping "group"</code>
  
 ---- ----
-==== RunSPM ====+==== -RunSPM / -spm ====
 ---- ----
 Run Statistical Parametric Mapping  Run Statistical Parametric Mapping 
 === Parameters === === Parameters ===
-== GLM ==+== GLM (Required) ==
 The name of the GLM used when creating the SPM The name of the GLM used when creating the SPM
-== Group1 ==+== Group1 (Required) ==
 The first grouping to compare The first grouping to compare
-== Group2 ==+== Group2 (Required) ==
 The second grouping to compare The second grouping to compare
-== Name ==+== Name (Required) ==
 The name of the SPM being created The name of the SPM being created
 === Example === === Example ===
-<code>--RunSPM name "New SPM" glm "New GLM" group1 "AnkleAngleX1_Reg" group2 "AnkleAngleX2_Reg"</code>+<code>-RunSPM name "New SPM" glm "New GLM" group1 "AnkleAngleX1_Reg" group2 "AnkleAngleX2_Reg"</code>
  
 ---- ----
-==== RunDTW ====+==== -RunDTW / -dtw ====
 ---- ----
 Run Dynamic Time Warping Run Dynamic Time Warping
 === Parameters === === Parameters ===
-== Name ==+== Name (Required) ==
 The name of the DTW test being run The name of the DTW test being run
 == StandardDeviations == == StandardDeviations ==
-How many standard deviations to test for: 1-3+How many standard deviations to test for: 1-3 \\ 
 +<sub>//Default:// 1</sub>
 === Example === === Example ===
 <code>--RunDTW name "New DTW" standardDeviations "2"</code> <code>--RunDTW name "New DTW" standardDeviations "2"</code>
  
 ----  ---- 
-==== RunV3D ====+==== -RunV3D / -s / -plpath ====
 ---- ----
 Execute one or more Visual3D pipeline scripts via the V3D Engine, currently this only works if a library has be loaded and a query run Execute one or more Visual3D pipeline scripts via the V3D Engine, currently this only works if a library has be loaded and a query run
Line 210: Line 230:
 A path to a .v3s script file, this parameter can be used more than once to load multiple scripts, the scripts will be executed in the order the are passed A path to a .v3s script file, this parameter can be used more than once to load multiple scripts, the scripts will be executed in the order the are passed
 === Example === === Example ===
-<code>--RunV3d script "C:\library folder\Script One.v3s" script "C:\library folder\Script Two.v3s"</code>+<code>-RunV3d script "C:\library folder\Script One.v3s" script "C:\library folder\Script Two.v3s"</code>
  
 ---- ----
-==== RunPCA ====+==== -RunPCA / -pca ====
 ---- ----
 Run Principal Component Analysis on all queries Run Principal Component Analysis on all queries
 === Parameters === === Parameters ===
-== Name (Required) ==+== Name (Required/Default) ==
 The name for the PCA to be created The name for the PCA to be created
 == numPCs == == numPCs ==
-How many principal components should be created+How many principal components should be created \\ 
 +<sub>//Default:// 4</sub>
 == WorkspaceMean == == WorkspaceMean ==
 If passed PCA will be run on the mean of each workspace and not the individual traces If passed PCA will be run on the mean of each workspace and not the individual traces
 === Example === === Example ===
-<code>--RunPCA name "New PCA" numPCs "3" workspaceMean</code>+<code>-RunPCA name "New PCA" numPCs "3" workspaceMean</code>
  
 ---- ----
-==== ExportData ====+==== -ExportPlotSignalTime / -ExportPlotST / -EPST ==== 
 +---- 
 +Export the selected traces on a signal time plot 
 +=== Parameters === 
 +== FilePath (Required/Default) == 
 +The file path the plot will be saved to, pass the desired image extension. Accepted image formats are .png, .pdf, .bmp, and .jpg 
 +== Height == 
 +The height in pixels of the generated plot \\ 
 +<sub>//Default:// 1000</sub> 
 +== Width == 
 +The width in pixels of the generated plot \\ 
 +<sub>//Default:// 1000</sub> 
 +== Title == 
 +The title displayed at the top of the plot 
 +== XLabel == 
 +The label displayed along the X Axis of the plot 
 +== YLabel == 
 +The label displayed along the Y Axis of the plot 
 +== Legend == 
 +Where the legend will be displayed, options are: Top Right, Top Left, Bottom Right, Bottom Left. If this is not passed no legend will be displayed. 
 +== DataStyle == 
 +Which data style type to use when generating the plot, options are: Workspace, Group, Sub Group, Cluster \\ 
 +<sub>//Default:// Workspace</sub> 
 +== GroupDispersion == 
 +If passed the group dispersion will be plotted 
 +== GroupDispersionType == 
 +The method of dispersion to plot, options are: One Standard Deviation, Two Standard Deviations, Interquartile Range \\ 
 +<sub>//Default:// One Standard Deviation</sub> 
 +== GroupMean == 
 +If passed group mean will be plotted 
 +== WorkspaceDispersion == 
 +If passed the workspace dispersion will be plotted 
 +== WorkspaceDispersionType == 
 +The method of dispersion to plot, options are: One Standard Deviation, Two Standard Deviations, Interquartile Range \\ 
 +<sub>//Default:// One Standard Deviation</sub> 
 +== WorkspaceMean == 
 +If passed workspace mean will be plotted 
 +== XRange == 
 +The range of values displayed on the X Axis of the plot, format: "min,max" 
 +== YRange == 
 +The range of values displayed on the Y Axis of the plot, format: "min,max" 
 +== RawTraces == 
 +If passed individual traces will be plotted, if no other items are plotted, raw traces will be plotted by default 
 +=== Example === 
 +<code>-ExportPlotSignalTime filePath "C:\Export Folder\signal_time_plot.png" rawTraces workspaceMean workspaceDispersion workspaceDispersionType "Interquartile Range" legend "Bottom Left"</code> 
 + 
 +---- 
 + 
 +==== -ExportPlotMetric / -ExportPlotM / -EPM ==== 
 +Export the select metrics on a metric plot 
 +=== Parameters === 
 +== FilePath (Required/Default) == 
 +The file path the plot will be saved to, pass the desired image extension. Accepted image formats are .png, .pdf, .bmp, and .jpg 
 +== Height == 
 +The height in pixels of the generated plot \\ 
 +<sub>//Default:// 1000</sub> 
 +== Width == 
 +The width in pixels of the generated plot \\ 
 +<sub>//Default:// 1000</sub> 
 +== Title == 
 +The title displayed at the top of the plot 
 +== XLabel == 
 +The label displayed along the X Axis of the plot 
 +== YLabel == 
 +The label displayed along the Y Axis of the plot 
 +== Legend == 
 +Where the legend will be displayed, options are: Top Right, Top Left, Bottom Right, Bottom Left. If this is not passed no legend will be displayed. 
 +== DataStyle == 
 +What data style used when plotting, options are: Workspace, Group, Sub Group, Cluster \\ 
 +<sub> 
 +== RawTraces == 
 +If passed individual traces will be displayed 
 +== GroupMean == 
 +If passed group mean will be plotted 
 +== GroupDispersion == 
 +If passed group dispersion will be plotted 
 +== GroupDispersionType ==  
 +The method of dispersion used, options are: One Standard Deviation, Two Standard Deviations, Interquartile Range \\ 
 +<sub>//Default:// One Standard Deviation</sub> 
 +== WorkspaceMean == 
 +If passed workspace mean will be plotted 
 +== WorkspaceDispersion == 
 +If passed workspace dispersion will be plotted  
 +== WorkspaceDispersionType == 
 +The method of dispersion used, options are: One Standard Deviation, Two Standard Deviations, Interquartile Range \\ 
 +<sub>//Default:// One Standard Deviation</sub> 
 +== MeanPlotStyle == 
 +Method used for plotting means, options are Bar Chart, Stacked Bar Chart, Box Plot 
 +<sub>//Default:// Bar Chart</sub> 
 +== MetricGrouping == 
 +How should workspace means be grouped, options are No Group, Group, Workspace 
 +<sub>//Default:// No Group</sub> 
 +=== Example === 
 +<code> 
 + 
 +---- 
 +==== -ExportData / -ex ====
 Export queried data results in an ascii text file  Export queried data results in an ascii text file 
 === Parameter === === Parameter ===
-== File ==+== File (Required) ==
 The path and name of the .txt file to export  The path and name of the .txt file to export 
 == Precision ==  == Precision == 
-How many decimal places to display in exported values+How many decimal places to display in exported values \\ 
 +<sub>//Default:// 4</sub>
 == ExportFormat == == ExportFormat ==
-The format of the exported ASCII file: Standard, SPSS, Transposed, P2D+The format of the exported ASCII file: Standard, SPSS, Transposed, P2D \\ 
 +<sub>//Default:// Standard</sub>
 == NormalizedTo == == NormalizedTo ==
-Number of points to normalize the export data to+Number of points to normalize the export data to \\ 
 +<sub>//Default:// 101</sub>
 == GroupMean == == GroupMean ==
 If passed the group mean will be exported If passed the group mean will be exported
Line 247: Line 367:
 If passed all time based sequences will be exported If passed all time based sequences will be exported
 === Example === === Example ===
-<code>--ExportData file "C:\library folder\exports\Data Export.txt"  precision "2" exportFormat "standard" normalizedTo "100" groupMean groupStdDev workspaceMean workspaceStdDev allSequenceNorm allSequencesTime</code>+<code>-ExportData file "C:\library folder\exports\Data Export.txt"  precision "2" exportFormat "standard" normalizedTo "100" groupMean groupStdDev workspaceMean workspaceStdDev allSequenceNorm allSequencesTime</code>
  
 ---- ----
-==== ExportPCA ====+==== -ExportPCA ====
 ---- ----
 Export PCA results to a .txt file Export PCA results to a .txt file
 === Parameter === === Parameter ===
-== File == +== File (Required) == 
-The path and name of the .txt file to export to +The path and name of the .txt file to export  
-== Precision == +== Precision ==  
-How many decimal places to display in exported values+How many decimal places to display in exported values \\ 
 +<sub>//Default:// 4</sub> 
 +== ExportFormat == 
 +The format of the exported ASCII file: Standard, SPSS, Transposed, P2D \\ 
 +<sub>//Default:// Standard</sub>
 == ExportFormat == == ExportFormat ==
 The format of the exported ASCII file: Standard, Transposed, SPSS, P2D The format of the exported ASCII file: Standard, Transposed, SPSS, P2D
Line 275: Line 399:
 If passed the mean +/- 5 and 95% will be exported If passed the mean +/- 5 and 95% will be exported
 === Example === === Example ===
-<code>--ExportPCA fileName "C:\library folder\exports\PCA Export.txt" precision "4" exportFormat "transposed" workspaceScores groupScores groupStdDev varianceExplained eigenVectors meanSD mean595</code>+<code>-ExportPCA fileName "C:\library folder\exports\PCA Export.txt" precision "4" exportFormat "transposed" workspaceScores groupScores groupStdDev varianceExplained eigenVectors meanSD mean595</code>
  
 ---- ----
-==== ExportSummaryStatistics ====+==== -ExportSummaryStatistics ====
 ---- ----
 Export summary statistics to a .txt file Export summary statistics to a .txt file
 === Parameters === === Parameters ===
-== File == +== File (Required) == 
-The path and name of the .txt file to export to +The path and name of the .txt file to export  
-== Precision == +== Precision ==  
-How many decimal places to display in exported values+How many decimal places to display in exported values \\ 
 +<sub>//Default:// 4</sub> 
 +== ExportFormat == 
 +The format of the exported ASCII file: Standard, SPSS, Transposed, P2D \\ 
 +<sub>//Default:// Standard</sub>
 == ExportFormat == == ExportFormat ==
 The format of the exported ASCII file: Standard, Transposed, SPSS, P2D The format of the exported ASCII file: Standard, Transposed, SPSS, P2D
Line 309: Line 437:
 Export results for: Groups, Workspaces, Instances Export results for: Groups, Workspaces, Instances
 === Example === === Example ===
-<code>--ExportSummaryStatistics file "C:\library folder\exports\Summary Statistics Export.txt" precision "2" exportFormat "SPSS" max maxEventPoint maxStdDev mean meanStdDev min minEventPoint minStdDev normalizeMetrics results "groups"</code>+<code>-ExportSummaryStatistics file "C:\library folder\exports\Summary Statistics Export.txt" precision "2" exportFormat "SPSS" max maxEventPoint maxStdDev mean meanStdDev min minEventPoint minStdDev normalizeMetrics results "groups"</code>
  
 ---- ----
-==== ExportRegisteredCurves ====+==== -ExportRegisteredCurves ====
 Export any results of curve registration Export any results of curve registration
 === Parameters === === Parameters ===
-== File == +== File (Required) == 
-The path and name of the .txt file to export to +The path and name of the .txt file to export  
-== Precision == +== Precision ==  
-How many decimal places to display in exported values+How many decimal places to display in exported values \\ 
 +<sub>//Default:// 4</sub> 
 +== ExportFormat == 
 +The format of the exported ASCII file: Standard, SPSS, Transposed, P2D \\ 
 +<sub>//Default:// Standard</sub>
 == ExportFormat == == ExportFormat ==
 The format of the exported ASCII file: Standard, Transposed, SPSS, P2D The format of the exported ASCII file: Standard, Transposed, SPSS, P2D
Line 330: Line 462:
 If passed warping functions will be exported If passed warping functions will be exported
 === Example === === Example ===
-<code>--ExportRegisteredCurves file "C:\library folder\exports\Registered Curves Export.txt" precision "3" exportFormat "transposed" landmarkAll landmarkMeans registeredCurves warpingFunctions</code>+<code>-ExportRegisteredCurves file "C:\library folder\exports\Registered Curves Export.txt" precision "3" exportFormat "transposed" landmarkAll landmarkMeans registeredCurves warpingFunctions</code>
  
 ---- ----
-==== ExportDTW ====+==== -ExportDTW ====
 ---- ----
 Export Dynamic Time Warping results Export Dynamic Time Warping results
 === Parameters === === Parameters ===
-== File == +== File (Required) == 
-The path and name of the .txt file to export to +The path and name of the .txt file to export  
-== Precision == +== Precision ==  
-How many decimal places to display in exported values+How many decimal places to display in exported values \\ 
 +<sub>//Default:// 4</sub> 
 +== ExportFormat == 
 +The format of the exported ASCII file: Standard, SPSS, Transposed, P2D \\ 
 +<sub>//Default:// Standard</sub>
 == ExportFormat == == ExportFormat ==
 The format of the exported ASCII file: Standard, Transposed, SPSS, P2D The format of the exported ASCII file: Standard, Transposed, SPSS, P2D
Line 348: Line 484:
 If passed all anomalies will be exported If passed all anomalies will be exported
 === Example === === Example ===
-<code>--ExportDTW file "C:\library folder\exports\Dynamic Time Warping Export.txt" precision "3" exportFormat "transposed"  foundAnomalies costFunctions</code>+<code>-ExportDTW file "C:\library folder\exports\Dynamic Time Warping Export.txt" precision "3" exportFormat "transposed"  foundAnomalies costFunctions</code>
  
 ---- ----
-==== ExportSPM ====+==== -ExportSPM ====
 ---- ----
 Export Statistical Parametric Mapping Results Export Statistical Parametric Mapping Results
 === Parameters === === Parameters ===
-== File == +== File (Required) == 
-The path and name of the .txt file to export to +The path and name of the .txt file to export  
-== Precision == +== Precision ==  
-How many decimal places to display in exported values+How many decimal places to display in exported values \\ 
 +<sub>//Default:// 4</sub> 
 +== ExportFormat == 
 +The format of the exported ASCII file: Standard, SPSS, Transposed, P2D \\ 
 +<sub>//Default:// Standard</sub>
 == ExportFormat == == ExportFormat ==
 The format of the exported ASCII file: Standard, Transposed, SPSS, P2D The format of the exported ASCII file: Standard, Transposed, SPSS, P2D
Line 368: Line 508:
 If passed the Statistical Parametric Map will be exported If passed the Statistical Parametric Map will be exported
 === Example === === Example ===
-<code>--ExportSPM file "C:\library folder\exports\Statistical Parametric Map Export.txt" precision "5" exportFormat "transposed" bMatrix residualMatrix spm</code>+<code>-ExportSPM file "C:\library folder\exports\Statistical Parametric Map Export.txt" precision "5" exportFormat "transposed" bMatrix residualMatrix spm</code> 
 + 
 +---- 
 +==== -SelectSignals / -sig ==== 
 +---- 
 +Select all or a selection of Signal groups and workspaces 
 +=== Parameters === 
 +== Group == 
 +The name of a group to be selected, this parameter can be passed multiple times to select more than one group, if this parameter is not passed, all groups will be selected 
 +== Workspace == 
 +The name of a workspace to be selected, this parameter can be passed multiple times to select more than one workspace, if this parameter is not passed, all workspaces will be selected 
 +=== Example === 
 +<code>-SelectSignals group "AnkleAngleX" group "AnkleAngleY" workspace "Sub004"</code> 
 + 
 +----  
 +==== -SelectMetrics / -met ==== 
 +---- 
 +Select all or a selection of Metric groups and workspaces 
 +=== Parameters === 
 +== Group == 
 +The name of a group to be selected, this parameter can be passed multiple times to select more than one group, if this parameter is not passed, all groups will be selected 
 +== Workspace == 
 +The name of a workspace to be selected, this parameter can be passed multiple times to select more than one workspace, if this parameter is not passed, all groups will be selected 
 +=== Example === 
 +<code>-SelectMetrics group "MaxKneeAngleX" group "MinKneeAngleX" workspace "Sub001"</code> 
 + 
 +---- 
 +==== -SaveProject / -sv ==== 
 +---- 
 +Save the currently open project to an .i3d file 
 +=== Parameters === 
 +== file (Required/Default) == 
 +The name and path of the .i3d file being saved 
 +=== Example === 
 +<code>-SaveProject file "C:/folder/file.i3d"</code> 
 + 
 +---- 
 +==== -LoadProject / -ld ==== 
 +---- 
 +Load the passed project file 
 +=== Parameters === 
 +== file == 
 +The name and path of the .i3d file being loaded 
 +=== Example === 
 +<code>-LoadProject file "C:/folder/file.i3d"</code> 
 + 
 +---- 
 +==== -ClearProject / -clr ==== 
 +---- 
 +Clear all data from the current project, no parameters 
 +=== Example === 
 +<code>-ClearProject</code>
  
sift/command_line.1725468829.txt.gz · Last modified: 2024/09/04 16:53 by sgranger