Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/npnl/PALS
Browse files Browse the repository at this point in the history
  • Loading branch information
amitkumarusc committed May 31, 2018
2 parents afd361c + 9151798 commit 4f86244
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@

Welcome to our github page!

This page is under construction. Please use under your own discretion.

## What is PALS?

PALS is a scalable and user-friendly toolbox designed to facilitate standardized analysis and ensure quality in stroke research using T1-weighted MRIs. The PALS toolbox offers four moduels integrated into a single pipeline, including (1) reorientation to radiological convention, (2) lesion correction for healthy white matter voxels, (3) lesion load calculation, and (4) visual quality control.
Expand Down
4 changes: 2 additions & 2 deletions pages/running_operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def resetUI(self):
self.btn_next.config(state="disabled")
self.stop.config(state="disabled")
self.output.delete('1.0', END)
self.title.set('Press Start Execution')
self.title.set("Press 'Start Execution' to begin")
self.progressbar.config(value=0)
self.need_subjects_file = False
self.disableChildren(self.lf_subject_file.winfo_children())
Expand All @@ -131,7 +131,7 @@ def executeCommand(self):
except Exception as e:
self.controller.logger.error(e.message)
self.controller.logger.error(traceback.format_exc())
self.setRequiredInputError('Please import correct text file downloaded from the QC page.')
self.setRequiredInputError('Please import correct textfile downloaded from the QC page.')
return False

self.disableChildren(self.lf_subject_file.winfo_children())
Expand Down
2 changes: 1 addition & 1 deletion utils/lesion_load_calculation_operation.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def _writeToCSV(self, subject_info_all, max_lesions, roi_list, space):
header.append('Lesion%s_Volume_StandardSpace'%(str(lesion_counter+1)))
for roi in roi_list:
roi_name = self._extractFileName(roi, remove_extension=True, extension_count=2)
header.append('Lesion%s_%s_Volume'%(str(lesion_counter+1), roi_name))
header.append('%s_Volume'%(roi_name))
header.append('Lesion%s_%s_lesionload'%(str(lesion_counter+1), roi_name))
header.append('Lesion%s_%s_PercentOverlap'%(str(lesion_counter+1),roi_name))

Expand Down

0 comments on commit 4f86244

Please # to comment.