Skip to content

Commit

Permalink
Fixed desc-ICAOrth_mixing.tsv to have capital ICA prefix column names…
Browse files Browse the repository at this point in the history
… following the nomenclature in other .tsv files (#906)

Co-authored-by: PabloOrtegaINBRAIN <portega@inbrain-neuroelectronics.com>
  • Loading branch information
pablosmig and PabloOrtegaINBRAIN committed Nov 23, 2022
1 parent d85dac3 commit 74ea9d5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tedana/workflows/tedana.py
Original file line number Diff line number Diff line change
Expand Up @@ -771,9 +771,10 @@ def tedana_workflow(
resid = rej_ts - pred_rej_ts
mmix[:, rej_idx] = resid
comp_names = [
io.add_decomp_prefix(comp, prefix="ica", max_value=comptable.index.max())
io.add_decomp_prefix(comp, prefix="ICA", max_value=comptable.index.max())
for comp in comptable.index.values
]

mixing_df = pd.DataFrame(data=mmix, columns=comp_names)
io_generator.save_file(mixing_df, "ICA orthogonalized mixing tsv")
RepLGR.info(
Expand Down

0 comments on commit 74ea9d5

Please sign in to comment.