From d71a31a60542608595ce1278cc4a3398479cec7f Mon Sep 17 00:00:00 2001 From: kdiverson Date: Mon, 2 Jul 2012 10:12:41 -0400 Subject: [PATCH] fixed io --- kruskalwalliscommand.cpp | 2 +- kruskalwalliscommand.h | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/kruskalwalliscommand.cpp b/kruskalwalliscommand.cpp index de15a8b..39afca8 100644 --- a/kruskalwalliscommand.cpp +++ b/kruskalwalliscommand.cpp @@ -141,7 +141,7 @@ int KruskalWallisCommand::execute(){ //math goes here - int N = lookUp.size(); + int N = lookup.size(); double H; double tmp = 0.0; vector vec; diff --git a/kruskalwalliscommand.h b/kruskalwalliscommand.h index e3bf100..0fa8b68 100644 --- a/kruskalwalliscommand.h +++ b/kruskalwalliscommand.h @@ -9,6 +9,8 @@ #define KRUSKALWALLISCOMMAND_H #include "command.hpp" +#include "inputdata.h" +#include "sharedrabundvector.h" class KruskalWallisCommand : public Command { @@ -39,8 +41,10 @@ public: private: - string outputDir; + string outputDir, sharedfile; bool abort; + set labels; + vector outputNames; vector counts; vector rankSums; vector rankMeans; -- 2.39.2