Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue #58 Don't print error when more data is requested from readGENEActiv() than is available in the file #59

Merged
merged 2 commits into from
Feb 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/GENEActivReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,12 @@ Rcpp::List GENEActivReader(std::string filename, std::size_t start = 0, std::siz
i++;
} catch (const std::exception& ex) {
errCounter++;
Rcpp::Rcerr << "data error at i = %d: %s i: " << i << " " << ex.what() << "\n";
std::string err_text = ex.what();

// report any error other than the one expected at the end of file
if (err_text.find("stoll: no conversion") == std::string::npos) {
Rcpp::Rcerr << "data error at i = " << i << " : " << err_text << "\n";
}
break; // rest of this block could be corrupted
}
}
Expand Down
Loading