Skip to content

Commit

Permalink
d
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremiah Wala committed Aug 25, 2015
1 parent c224c01 commit 8c40aa0
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion src/GenomicRegionCollection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ GRC GenomicRegionCollection<T>::complement(GRC& subject, bool ignore_strand)
GRC out;
// get this - that

#ifdef BOOST_CONFIG_HPP
#ifdef BOOST_CONFIG_HPP_dum
using namespace boost::icl;
typedef interval_set<int> TIntervalSet;

Expand Down Expand Up @@ -529,6 +529,22 @@ GRC GenomicRegionCollection<T>::complement(GRC& subject, bool ignore_strand)

#else
std::cerr << "No Boost library detected. GenomicRegionCollection::complement will not function. Returning Empty GRC" << std::endl;

// sort this
//gsort();

// sort that
//subject.gsort();

subject.createTreeMap();
createTreeMap();

std::vector<int32_t> sub, que;
GRC tt = findOverlaps(subject, sub, que, true);
for (auto& i : tt)
std::cerr << i << std::endl;


return out;
#endif

Expand Down

0 comments on commit 8c40aa0

Please sign in to comment.