ratschlab / metagraph

Scalable annotated de Bruijn graphs for DNA indexing, alignment, and assembly
http://metagraph.ethz.ch
GNU General Public License v3.0
110 stars 17 forks source link

Add missing headers to `binary_matrix.hpp` #467

Closed rob-p closed 1 year ago

rob-p commented 1 year ago

Add required <istream> and <ostream> headers.

The stream types are referenced within the class and, at least under g++11, didn't seem to make their way into scope via another path within this file. Adding them here allowed the code to compile successfully.

karasikov commented 1 year ago

Thanks!