// -*- c++ -*- /*****************************************************************************/ // Copyright (c) Illumina 2008 // Author: Richard Shaw // // This software is covered by the "Illumina Genome Analyzer Software // License Agreement" and the "Illumina Source Code License Agreement", // and certain third party copyright/licenses, and any user of this // source file is bound by the terms therein (see accompanying files // Illumina_Genome_Analyzer_Software_License_Agreement.pdf and // Illumina_Source_Code_License_Agreement.pdf and third party // copyright/license notices). /*****************************************************************************/ #ifndef PQVS_OPTIONS_H #define PQVS_OPTIONS_H /*****************************************************************************/ #include #include "statistics/Align_Data_Factory.h" #include "common/CommandLine.hh" #include "common/File_Buffer.h" /*****************************************************************************/ namespace CommandLine = casava::common; class PQVS_Options : public CommandLine::Options { public: PQVS_Options(); ~PQVS_Options(); std::string my_input_compr_name; File_Buffer::Compression_Type my_input_compr; std::string my_input_path_str; std::string my_output_path_str; private: virtual int getOptions(int argc, char* const argv[]) throw (CommandLine::UnknownOptionException, CommandLine::MissingOptionException, CommandLine::InvalidArgumentException); virtual void processOptions() throw (CommandLine::InvalidArgumentException); virtual void getParameters(int argc, char* const argv[]) throw (CommandLine::InvalidArgumentException); virtual int usage(int argc, char* const argv[], const std::string& message = ""); }; /*****************************************************************************/ #endif // ! PQVS_OPTIONS_H /*****************************************************************************/