You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* fix/csv: (47 commits)
added group_id to pipeline names
Fixed TesselationSmooth outputs and error reporting.
Fixed an unintended comment
CSVFibers fix
Added more global metrics
Fixes for global CSV merging
Number/percentage of tracts are now output from CreateMatrix as a .mat file
Typo fix
Group mrtrix tutorial runs properly
Fixed os.path.exists call
Spacing fix
Uncommented subject lists
Fix for std::badalloc, lmax float to int, parcellation subject dir must exist
Fix for creatematrix outputs
ConcatCSV interface and CreateMatrix output fixes
Changed CSV concatenation to use Function interfaces
Fix for single subject global network csvs'
Improved CSV merging. Single subj and group level fiber csvs
Number/percentage of tracts are now output from CreateMatrix as a .mat file
Typo fix
...
@@ -727,6 +731,7 @@ class MergeCSVFilesInputSpec(TraitedSpec):
727
731
out_file=File('merged.csv', usedefault=True, desc='Output filename for merged CSV file')
728
732
column_headings=traits.List(traits.Str, desc='List of column headings to save in merged CSV file (must be equal to number of input files). If left undefined, these will be pulled from the input filenames.')
729
733
row_headings=traits.List(traits.Str, desc='List of row headings to save in merged CSV file (must be equal to number of rows in the input files).')
734
+
row_heading_title=traits.Str('label', usedefault=True, desc='Column heading for the row headings added')
730
735
extra_column_heading=traits.Str(desc='New heading to add for the added field.')
731
736
extra_field=traits.Str(desc='New field to add to each row. This is useful for saving the group or subject ID in the file.')
732
737
@@ -756,6 +761,7 @@ class MergeCSVFiles(BaseInterface):
0 commit comments