From bf8e5263885e03a2f891ed504f750e69898fd008 Mon Sep 17 00:00:00 2001 From: Jean-Christophe Fillion-Robin Date: Wed, 22 Jul 2020 17:18:12 -0400 Subject: [PATCH 1/2] BUG: Update name of MFSDA loadable module This commit partially reverts commit 4df8b7a (ENH: Rename modules for SALT) restoring the name of the loadable module from "Covariate Significance Testing" to "MFSDA" --- MFSDA/MFSDA.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MFSDA/MFSDA.py b/MFSDA/MFSDA.py index c04f004..eeb42b8 100644 --- a/MFSDA/MFSDA.py +++ b/MFSDA/MFSDA.py @@ -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)" From 24b8c11f0a72a04ded2f6dd484d8c01a35fca90e Mon Sep 17 00:00:00 2001 From: Jean-Christophe Fillion-Robin Date: Thu, 23 Jul 2020 09:41:29 -0400 Subject: [PATCH 2/2] ENH: Change extension category from "Statistics" to "Shape Analysis" --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 04353d2..e49511b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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")