Skip to content
Snippets Groups Projects
Commit fabf0acd authored by Aaron's avatar Aaron
Browse files

Fixed constructor definition in closestBed.h. Caused compilation issues for Gordon Assaf.

parent d3ad16a7
No related branches found
No related tags found
No related merge requests found
......@@ -13,8 +13,8 @@
#include "closestBed.h"
const int MAXSLOP = 256000000; // 2*MAXSLOP = 512 megabases.
// We don't want to keep looking if we
// can't find a nearby feature within 512 Mb.
// We don't want to keep looking if we
// can't find a nearby feature within 512 Mb.
const int SLOPGROWTH = 2048000;
......
......@@ -27,7 +27,7 @@ class BedClosest {
public:
// constructor
BedClosest(string &bedAFile, string &bedAFile, bool &forceStrand, string &tieMode);
BedClosest(string &bedAFile, string &bedBFile, bool &forceStrand, string &tieMode);
// destructor
~BedClosest(void);
......@@ -46,8 +46,6 @@ private:
BedFile *_bedA, *_bedB;
// methods
void reportA(const BED &);
void reportB(const BED &);
void reportNullB();
void FindWindowOverlaps(BED &, vector<BED> &);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment