Skip to content
Snippets Groups Projects
Commit 2232f606 authored by Aaron's avatar Aaron
Browse files

Added the faulty line number when reporting malformed BED/GFF entries to BedFile::parseLine()

parent 48b108eb
No related branches found
No related tags found
No related merge requests found
......@@ -403,7 +403,7 @@ BedLineStatus BedFile::parseLine (BED &bed, const vector<string> &lineVector, in
}
// gripe if it's not a blank line
else if (lineVector.size() != 0) {
cerr << "It looks as though you have less than 3 columns. Are you sure your files are tab-delimited?" << endl;
cerr << "It looks as though you have less than 3 columns at line: " << lineNum << ". Are you sure your files are tab-delimited?" << endl;
exit(1);
}
}
......
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