/***************************************************************************** intersectBed.h (c) 2009 - Aaron Quinlan Hall Laboratory Department of Biochemistry and Molecular Genetics University of Virginia aaronquinlan@gmail.com Licenced under the GNU General Public License 2.0 license. ******************************************************************************/ #ifndef INTERSECTBED_H #define INTERSECTBED_H #include "bedFile.h" #include "BamReader.h" #include "BamWriter.h" #include "BamAncillary.h" #include "BamAux.h" using namespace BamTools; #include #include #include #include using namespace std; class BedIntersect { public: // constructor BedIntersect(string bedAFile, string bedBFile, bool anyHit, bool writeA, bool writeB, bool writeOverlap, bool writeAllOverlap, float overlapFraction, bool noHit, bool writeCount, bool forceStrand, bool reciprocal, bool obeySplits, bool bamInput, bool bamOutput, bool isUncompressedBam); // destructor ~BedIntersect(void); private: //------------------------------------------------ // private attributes //------------------------------------------------ string _bedAFile; string _bedBFile; bool _writeA; // should the original A feature be reported? bool _writeB; // should the original B feature be reported? bool _writeOverlap; bool _writeAllOverlap; bool _forceStrand; bool _reciprocal; float _overlapFraction; bool _anyHit; bool _noHit; bool _writeCount; // do we want a count of the number of overlaps in B? bool _obeySplits; bool _bamInput; bool _bamOutput; bool _isUncompressedBam; // instance of a bed file class. BedFile *_bedA, *_bedB; //------------------------------------------------ // private methods //------------------------------------------------ void IntersectBed(istream &bedInput); void IntersectBed(); void IntersectBam(string bamFile); bool processHits(const BED &a, const vector &hits, bool printable); bool FindOverlaps(const BED &a, vector &hits); bool FindOneOrMoreOverlap(const BED &a); void ReportOverlapDetail(const int &overlapBases, const BED &a, const BED &b, const CHRPOS &s, const CHRPOS &e); void ReportOverlapSummary(const BED &a, const int &numOverlapsFound); }; #endif /* INTERSECTBED_H */