00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef CGA_TOOLS_COMMAND_EVIDENCE2SAM_HPP_
00016 #define CGA_TOOLS_COMMAND_EVIDENCE2SAM_HPP_ 1
00017
00019
00020 #include "cgatools/core.hpp"
00021 #include "cgatools/command/Command.hpp"
00022 #include "cgatools/util/RangeSet.hpp"
00023
00024 namespace cgatools { namespace command {
00025
00026 class Evidence2SamConfig {
00027 public:
00028 Evidence2SamConfig()
00029 :keepDuplicates_(false)
00030 ,addMateSequenceAndScore_(false)
00031 ,addAlleleId_(false)
00032 ,verboseOutput_(false)
00033 {}
00034
00035 bool keepDuplicates_;
00036 bool addMateSequenceAndScore_;
00037 bool addAlleleId_;
00038 bool verboseOutput_;
00039
00040 util::StringVector exportRegions_;
00041
00042 std::string evidenceDnbsFileName_;
00043 std::string inputLibFileName_;
00044 std::string referenceFileName_;
00045 std::string outputFileName_;
00046
00047 std::string commandLine_;
00048 };
00049
00050 class Evidence2Sam : public Command
00051 {
00052 public:
00053 Evidence2Sam(const std::string& name);
00054
00055 protected:
00056 int run(po::variables_map& vm);
00057
00058 private:
00059 Evidence2SamConfig config_;
00060 };
00061
00062 } }
00063
00064 #endif // CGA_TOOLS_COMMAND_EVIDENCE2SAM_HPP_