1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
//
// testmergegroupscommand.h
// Mothur
//
// Created by Sarah Westcott on 7/29/15.
// Copyright (c) 2015 Schloss Lab. All rights reserved.
//
#ifndef __Mothur__testmergegroupscommand__
#define __Mothur__testmergegroupscommand__
#include "mergegroupscommand.h"
class TestMergeGroupsCommand : public MergeGroupsCommand {
public:
//private functions
using MergeGroupsCommand::process;
using MergeGroupsCommand::processSharedFile;
using MergeGroupsCommand::processGroupFile;
using MergeGroupsCommand::processCountFile;
};
#endif /* defined(__Mothur__testmergegroupscommand__) */
|