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

Added size() method to BED struct.

parent 2771b400
No related branches found
No related tags found
No related merge requests found
......@@ -152,6 +152,10 @@ public:
strand(strand),
otherFields(otherFields)
{}
int size() {
return end-start;
}
}; // 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