Skip to content

Commit bfb34b3

Browse files
authored
Fixes by misspell-fixer
1 parent 9ba2afb commit bfb34b3

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ A sample output is presented in the figure below.
127127

128128
<br/>
129129
<p align="center">
130-
<img src="https://github.com/SPARC-FAIR-Codeathon/KnowMore/blob/main/docs/knowmore-ouput.PNG" alt="coming-soon..." width="900">
130+
<img src="https://github.com/SPARC-FAIR-Codeathon/KnowMore/blob/main/docs/knowmore-output.PNG" alt="coming-soon..." width="900">
131131
<br/>
132132
<i> Sample output from KnowMore. It consists of interactive text and plots display to the user.</i>
133133
</img>

app/osparc/job_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ def check_job_status(job_type, job_id):
249249
payload = {}
250250

251251
if OSPARC_TEST_MODE or job_id == "fake-job-for-testing":
252-
# this is test mode, send back sucessful and mock data
252+
# this is test mode, send back successful and mock data
253253

254254

255255
payload = {

assets/INPUT_FOLDER/main.m

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ function main(InputDataDirectory)
7575

7676

7777
%Create an OS-agnostic path to the Excel file that defines the datasets
78-
ExcelInputFile = fullfile(InputDataDirectory, 'matlab_input.xlsx');
78+
ExcelInputFile = fulfile(InputDataDirectory, 'matlab_input.xlsx');
7979

8080
%Ensure that InputDataDirectory exists
8181
if ~isdir(InputDataDirectory)
@@ -86,8 +86,8 @@ function main(InputDataDirectory)
8686
errordlg(['The file matlab-input.xlsx does not exist in ' InputDataDirectory],'Missing File');
8787

8888
%Ensure there's a data directory there (don't check to see if the data are there yet)
89-
elseif ~isdir(fullfile(InputDataDirectory,'matlab_data'))
90-
errordlg([fullfile(InputDataDirectory,'matlab_data') ' is not a directory.'],'Invalid Path');
89+
elseif ~isdir(fulfile(InputDataDirectory,'matlab_data'))
90+
errordlg([fulfile(InputDataDirectory,'matlab_data') ' is not a directory.'],'Invalid Path');
9191

9292
%all good so far, commence with processing
9393
else
@@ -109,7 +109,7 @@ function main(InputDataDirectory)
109109
%Process each data set
110110
for TempDataSet=1:size(Sheet1,1)
111111
%Load the mat file
112-
MatFile=fullfile(InputDataDirectory,'matlab_data',num2str(Sheet1.datasetId(TempDataSet)), Sheet1.filepath{TempDataSet});
112+
MatFile=fulfile(InputDataDirectory,'matlab_data',num2str(Sheet1.datasetId(TempDataSet)), Sheet1.filepath{TempDataSet});
113113
TempData=load(MatFile);
114114

115115
%Build a table for the variables in this dataset

knowmore-notebook/knowmore-notebook.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@
483483
{
484484
"data": {
485485
"text/plain": [
486-
"Text(0.5, 1.0, '20 Most occuring keywords')"
486+
"Text(0.5, 1.0, '20 Most occurring keywords')"
487487
]
488488
},
489489
"execution_count": 19,
@@ -511,7 +511,7 @@
511511
"key_words = pd.DataFrame(key_words).set_index(\"Words\")\n",
512512
"plot = key_words.plot.barh(color=\"red\")\n",
513513
"plot.set_xlabel(\"Count\")\n",
514-
"plot.set_title(\"20 Most occuring keywords\")\n"
514+
"plot.set_title(\"20 Most occurring keywords\")\n"
515515
]
516516
},
517517
{

0 commit comments

Comments
 (0)