00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef CGATOOLS_CGIDATA_CGIDATA_HPP_
00016 #define CGATOOLS_CGIDATA_CGIDATA_HPP_ 1
00017
00019
00020 #include "cgatools/core.hpp"
00021 #include <boost/noncopyable.hpp>
00022 #include <boost/filesystem.hpp>
00023
00024 namespace cgatools { namespace cgidata {
00025
00026 class CgiExportPackage : boost::noncopyable
00027 {
00028 public:
00029 CgiExportPackage(const std::string& root);
00030
00031 std::string getEvidenceIntervalsFileName(const std::string& chromName) const;
00032 std::string getReferenceSupportFileName(const std::string& chromName) const;
00033 private:
00034 boost::filesystem::path root_, asmDir_, asmRefDir_, asmEvidenceDir_;
00035 std::string asmId_;
00036 };
00037
00038 } }
00039
00040 #endif // CGATOOLS_CGIDATA_CGIDATA_HPP_