Skip to content

Commit

Permalink
fix option checking after removing un-necessary option
Browse files Browse the repository at this point in the history
  • Loading branch information
rob-p committed Sep 4, 2015
1 parent bbcdfea commit 20bbf56
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions src/SailfishQuantify.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -598,13 +598,8 @@ int mainQuantify(int argc, char* argv[]) {
sopt.fileLog = fileLog;

// Verify that no inconsistent options were provided
{
if (sopt.noFragLengthDist and !sopt.noEffectiveLengthCorrection) {
jointLog->info() << "Error: You cannot enable --noFragLengthDist without "
<< "also enabling --noEffectiveLengthCorrection; exiting!\n";
std::exit(1);
}
}
// {
// }

jointLog->info() << "parsing read library format";

Expand Down

0 comments on commit 20bbf56

Please sign in to comment.