8000 codespell: config, workflow, typos fixed by yarikoptic · Pull Request #3549 · nipy/nipype · GitHub
[go: up one dir, main page]

Skip to content

codespell: config, workflow, typos fixed #3549

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Apr 17, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Some ambigous typos fixes
  • Loading branch information
yarikoptic committed Mar 9, 2023
commit 694b79ea82af146e95e7391f561d6cbd1cecc7ca
2 changes: 1 addition & 1 deletion nipype/interfaces/ants/registration.py
Original file line number Diff line number Diff line change
Expand Up @@ -865,7 +865,7 @@ class Registration(ANTSCommand):
--write-composite-transform 0'

One can use multiple similarity metrics in a single registration stage.The Node below first
performs a linear registation using only the Mutual Information ('Mattes')-metric.
performs a linear registration using only the Mutual Information ('Mattes')-metric.
In a second stage, it performs a non-linear registration ('Syn') using both a
Mutual Information and a local cross-correlation ('CC')-metric. Both metrics are weighted
equally ('metric_weight' is .5 for both). The Mutual Information- metric uses 32 bins.
Expand Down
2 changes: 1 addition & 1 deletion nipype/interfaces/freesurfer/longitudinal.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class RobustTemplateInputSpec(FSTraitedSpecOpenMP):
)
initial_timepoint = traits.Int(
argstr="--inittp %d",
desc="use TP# for spacial init (default random), 0: no init",
desc="use TP# for special init (default random), 0: no init",
)
fixed_timepoint = traits.Bool(
default_value=False,
Expand Down
2 changes: 1 addition & 1 deletion nipype/interfaces/fsl/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -2026,7 +2026,7 @@ class ClusterInputSpec(FSLCommandInputSpec):
argstr="--stdvol=%s", desc="filename for standard-space volume"
)
num_maxima = traits.Int(argstr="--num=%d", desc="no of local maxima to report")
warpfield_file = File(argstr="--warpvol=%s", desc="file contining warpfield")
warpfield_file = File(argstr="--warpvol=%s", desc="file containing warpfield")


class ClusterOutputSpec(TraitedSpec):
Expand Down
2 changes: 1 addition & 1 deletion nipype/utils/profiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def stop(self):

class ResourceMonitor(threading.Thread):
"""
A ``Thread`` to monitor a specific PID with a certain frequence
A ``Thread`` to monitor a specific PID with a certain frequency
to a file
"""

Expand Down
0