Skip to content

Commit a44cb87

Browse files
committed
More spelling errors
1 parent f03edb2 commit a44cb87

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
The PICAchooser package
99
=======================
1010

11-
PICAchooser is a suite of simple gui tools for scanning through MELODIC probabalistic ICA
11+
PICAchooser is a suite of simple gui tools for scanning through MELODIC probabilistic ICA
1212
runs and quickly making decisions about which components are worth keeping, and
1313
what relates to what. These tools each only do one thing, but they do them
1414
quickly and easily using only keyboard input. Current programs are

docs/usage.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ of these overrides any location inferred from --melodicdir or --featdir.:
7070
by MELODIC (usually found in
7171
MELODICDIR/mask.nii.gz).
7272
--timecoursefile MIXFILE
73-
The timecourses of the independant
73+
The timecourses of the independent
7474
components (usually found in
7575
MELODICDIR/melodic_mix),
7676
--ICstatsfile STATSFILE
@@ -290,7 +290,7 @@ As a bonus, if you also set:
290290
Then when you save your bad component file, you'll see the command
291291
necessary to refilter your data printed to the terminal window. I
292292
haven't investigated far enough to know when the smoothing implied in
293-
the name of the exisiting filtered file comes from, so there may be some
293+
the name of the existing filtered file comes from, so there may be some
294294
other steps to get to exactly the output you'd get from fmriprep...
295295

296296
melodicomp
@@ -299,7 +299,7 @@ melodicomp
299299
melodicomp handles a slightly different task - its job is to allow for
300300
rapid comparison of two melodic analyses. In this case, you want to
301301
match components between the two analyses (the chances that you'll get
302-
the same components in the same order between two analyses is basicaly
302+
the same components in the same order between two analyses is basically
303303
zero, so you need to match them up). We do this with a spatial
304304
cross-correlation - higher cross-correlation means the the components
305305
look more like each other. This works surprisingly well. We then display

picachooser/scripts/melodicomp.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def __init__(self, *args, **kwargs):
5858
super().__init__(*args, **kwargs)
5959

6060
def closeEvent(self, event):
61-
writecorrespondance()
61+
writecorrespondence()
6262

6363
def keyPressEvent(self, ev):
6464
self.sigKeyPress.emit(ev)
@@ -100,7 +100,7 @@ def decrementsorttype():
100100
selectsort()
101101

102102

103-
def writecorrespondance():
103+
def writecorrespondence():
104104
global alldata1, numelements1, Correspondancefile, indexmap, thecorrcoeffs
105105

106106
outputlist = ["idx1\tidx2\tcorrcoeff"]
@@ -174,8 +174,8 @@ def keyPressed(evt):
174174
elif evt.key() == QtCore.Qt.Key.Key_R:
175175
whichcomponent = 0
176176
elif evt.key() == QtCore.Qt.Key.Key_Escape:
177-
writecorrespondance()
178-
print("correspondance file written")
177+
writecorrespondence()
178+
print("correspondence file written")
179179
else:
180180
print(evt.key())
181181

@@ -421,7 +421,7 @@ def main():
421421
try:
422422
args = parser.parse_args()
423423
except SystemExit:
424-
print("Use --help option for detailed informtion on options.")
424+
print("Use --help option for detailed information on options.")
425425
raise
426426

427427
# make sure we can find the required input files

picachooser/scripts/rtgrader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ def main():
399399
try:
400400
args = parser.parse_args()
401401
except SystemExit:
402-
print("Use --help option for detailed informtion on options.")
402+
print("Use --help option for detailed information on options.")
403403
raise
404404

405405
# make sure we can find the required input files

0 commit comments

Comments
 (0)