Skip to content

Commit

Permalink
Resolving branch conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
bbfrederick committed Dec 20, 2024
1 parent 1d3d9d1 commit ba2c98c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions rapidtide/workflows/rapidtide.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
import rapidtide.miscmath as tide_math
import rapidtide.multiproc as tide_multiproc
import rapidtide.peakeval as tide_peakeval
import rapidtide.refineregressor as tide_refine
import rapidtide.refineregressor as tide_refineregressor
import rapidtide.resample as tide_resample
import rapidtide.simfuncfit as tide_simfuncfit
import rapidtide.stats as tide_stats
Expand Down Expand Up @@ -2663,7 +2663,7 @@ def rapidtide_main(argparsingfunc):
lagfails,
sigmafails,
numinmask,
) = tide_refine.makerefinemask(
) = tide_refineregressor.makerefinemask(
lagstrengths,
lagtimes,
lagsigma,
Expand All @@ -2686,7 +2686,7 @@ def rapidtide_main(argparsingfunc):

# align timecourses to prepare for refinement
alignvoxels_func = addmemprofiling(
tide_refine.alignvoxels,
tide_refineregressor.alignvoxels,
optiondict["memprofile"],
"before aligning voxel timecourses",
)
Expand Down Expand Up @@ -2715,7 +2715,7 @@ def rapidtide_main(argparsingfunc):
LGR.info(f"align complete: {voxelsprocessed_rra=}")

LGR.info("prenormalizing timecourses")
tide_refine.prenorm(
tide_refineregressor.prenorm(
paddedshiftedtcs,
refinemask,
lagtimes,
Expand All @@ -2729,7 +2729,7 @@ def rapidtide_main(argparsingfunc):
(
voxelsprocessed_rr,
paddedoutputdata,
) = tide_refine.dorefine(
) = tide_refineregressor.dorefine(
paddedshiftedtcs,
refinemask,
weights,
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ py_modules =
rapidtide/glmpass
rapidtide/dlfilter
rapidtide/wiener
rapidtide/refine
rapidtide/refineregressor
rapidtide/_version
rapidtide/workflows/parser_funcs
rapidtide/workflows/aligntcs
Expand Down

0 comments on commit ba2c98c

Please sign in to comment.