From 847bb54463913763210bd5974bc1b7830012e3ea Mon Sep 17 00:00:00 2001 From: Kathryn Iverson Date: Thu, 28 Jun 2012 11:59:02 -0400 Subject: [PATCH] updated kruskalwallis struct --- kruskalwalliscommand.h | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/kruskalwalliscommand.h b/kruskalwalliscommand.h index 003ea91..3b5fdce 100644 --- a/kruskalwalliscommand.h +++ b/kruskalwalliscommand.h @@ -10,11 +10,7 @@ #include "command.hpp" - struct groupRank { - sstring group; - double value; - double rank; - }; + class KruskalWallisCommand : public Command { @@ -32,6 +28,12 @@ public: string getCitation() { return "http://www.mothur.org/wiki/kruskalwallis"; } string getDescription() { return "Non-parametric method for testing whether samples originate from the same distribution."; } + struct groupRank { + sstring group; + double value; + double rank; + }; + int execute(); void help() { m->mothurOut(getHelpString()); } void assignRank(vector); -- 2.39.2