From 20bbf5671c2cfa43a404976c23207cd70148bf88 Mon Sep 17 00:00:00 2001 From: Rob Date: Thu, 3 Sep 2015 23:41:32 -0400 Subject: [PATCH] fix option checking after removing un-necessary option --- src/SailfishQuantify.cpp | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/SailfishQuantify.cpp b/src/SailfishQuantify.cpp index 959bf0b..a50c92f 100644 --- a/src/SailfishQuantify.cpp +++ b/src/SailfishQuantify.cpp @@ -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";