1 #ifndef DECONVOLUTECOMMAND_H
2 #define DECONVOLUTECOMMAND_H
7 * Created by Sarah Westcott on 1/21/09.
8 * Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
12 #include "command.hpp"
13 #include "utilities.hpp"
15 #include "globaldata.hpp"
17 /* The deconvolute command reads a fasta file, finds the duplicate sequences and outputs a names file
18 containing 2 columns. The first being the groupname and the second the list of identical sequence names. */
22 class DeconvoluteCommand : public Command {
25 DeconvoluteCommand() {};
26 ~DeconvoluteCommand() { delete fastamap; };
30 GlobalData* globaldata;
33 ofstream out, outFasta;
34 string filename, outputFileName, outFastafile;