Skip to content

Commit

Permalink
PEP8 + typos
Browse files Browse the repository at this point in the history
  • Loading branch information
bclenet committed Jun 24, 2024
1 parent df810f2 commit 4b6babf
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions narps_open/pipelines/team_B23O.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ def get_subject_information(event_file):
Returns :
- subject_info : list of Bunch for 1st level analysis.
"""
from numpy import mean
from nipype.interfaces.base import Bunch

onsets_trial = []
Expand Down Expand Up @@ -294,7 +293,7 @@ def get_subject_level_analysis(self):
# computing the intersection of all run masks.
mask_intersection = Node(MathsCommand(), name = 'mask_intersection')
mask_intersection.inputs.args = '-Tmin -thr 0.9'
group_level.connect(merge_masks, 'merged_file', mask_intersection, 'in_file')
subject_level.connect(merge_masks, 'merged_file', mask_intersection, 'in_file')

# L2Model Node - Generate subject specific second level model
generate_model = Node(L2Model(), name = 'generate_model')
Expand Down

0 comments on commit 4b6babf

Please sign in to comment.