Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ project(MFSDA)
#-----------------------------------------------------------------------------
# Extension meta-information
set(EXTENSION_HOMEPAGE "https://github.com/DCBIA-OrthoLab/MFSDA_Python#readme")
set(EXTENSION_CATEGORY "Statistics")
set(EXTENSION_CATEGORY "Shape Analysis")
set(EXTENSION_CONTRIBUTORS "Mateo Lopez (University of North Carolina), Juan Carlos Prieto (University of North Carolina) ")
set(EXTENSION_DESCRIPTION "Modules for statistical shape analysis. A multivariate varying coefficient model is introduced to build the association between the multivariate shape measurements and demographic information and other clinical variables. Statistical inference, i.e., hypothesis testing, is also included in this package, which can be used in investigating whether some covariates of interest are significantly associated with the shape information. The hypothesis testing results are further used in clustering based analysis.")
set(EXTENSION_ICONURL "https://raw.githubusercontent.com/DCBIA-OrthoLab/MFSDA_Python/master/MFSDA.png")
Expand Down
2 changes: 1 addition & 1 deletion MFSDA/MFSDA.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class MFSDA(ScriptedLoadableModule):

def __init__(self, parent):
ScriptedLoadableModule.__init__(self, parent)
self.parent.title = "Covariate Significance Testing" # TODO make this more human readable by adding spaces
self.parent.title = "MFSDA" # TODO make this more human readable by adding spaces
self.parent.categories = ["Shape Analysis"]
self.parent.dependencies = []
self.parent.contributors = ["Loic Michoud"] # replace with "Firstname Lastname (Organization)"
Expand Down