00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef CGA_TOOLS_COMMAND_JUNCTIONRATIONALIZATION_HPP_
00016 #define CGA_TOOLS_COMMAND_JUNCTIONRATIONALIZATION_HPP_ 1
00017
00019
00020 #include "cgatools/core.hpp"
00021 #include "cgatools/command/Command.hpp"
00022
00023 namespace cgatools { namespace command {
00024
00025 class JunctionType : public Command
00026 {
00027 public:
00028 JunctionType(const std::string& name);
00029
00030 protected:
00031 int run(po::variables_map& vm);
00032
00033 private:
00034 std::string referenceFileName_, junctionFileName_,
00035 fullJunctionFileName_, outputPrefix_,
00036 repmaskFileName_, mobileElementNames_,
00037 geneFileName_;
00038
00039 int maxPairingDistance_, maxCopyTargetLength_, maxDistanceToTransposon_,
00040 maxSimpleEventDistance_, maxRelatedJunctionDistance_,
00041 maxContainedGenesRangeLength_, maxRelatedJunctionOutput_;
00042
00043 uint32_t regulatoryRegionLength_;
00044
00045
00046
00047 };
00048
00049 } }
00050
00051 #endif // CGA_TOOLS_JUNCTIONRATIONALIZATION_HPP_