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

Updated BED struct for future fjoin alg. support.

parent 3112d332
No related branches found
No related tags found
No related merge requests found
......@@ -20,6 +20,7 @@ SUBDIRS = $(SRC_DIR)/annotateBed \
$(SRC_DIR)/complementBed \
$(SRC_DIR)/coverageBed \
$(SRC_DIR)/fastaFromBed \
$(SRC_DIR)/fjoin \
$(SRC_DIR)/genomeCoverageBed \
$(SRC_DIR)/groupBy \
$(SRC_DIR)/intersectBed \
......
......@@ -89,6 +89,12 @@ struct BED {
// Add'l fields for BED12 and/or custom BED annotations
vector<string> otherFields;
// experimental fields for the FJOIN approach.
bool added;
bool finished;
// list of hits from another file.
vector<BED> overlaps;
public:
// constructors
......@@ -101,7 +107,10 @@ public:
name(""),
score(""),
strand(""),
otherFields()
otherFields(),
added(false),
finished(false),
overlaps()
{}
// BED3
......@@ -141,10 +150,10 @@ public:
strand(strand),
otherFields(otherFields)
{}
}; // BED
/*
Structure for regular BED COVERAGE records
*/
......
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