You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The way that I am storing the input data (total and alt reads) is to push them linearly into an integer vector. A user has noted that large data sets will not be read in properly due to a presumed memory error (I haven't verified this yet), so the program will not run. I am planning to try to fix it by making the input data two-dimensional vectors to see if that will fix the issue.
# Current implementation
std::vector<int> input;
# New implementation
# with 2D vector
std::vector< std::vector<int> > input;
The text was updated successfully, but these errors were encountered:
The way that I am storing the input data (total and alt reads) is to push them linearly into an integer vector. A user has noted that large data sets will not be read in properly due to a presumed memory error (I haven't verified this yet), so the program will not run. I am planning to try to fix it by making the input data two-dimensional vectors to see if that will fix the issue.
The text was updated successfully, but these errors were encountered: