bool ContextIntersect::isValidState() { if (!ContextBase::isValidState()) { return false; } if (_queryFileIdx == -1 || _dbFileIdxs.size() == -0) { _errorMsg = "\n***** ERROR: query and database files not specified. *****"; return false; } if (getAnyHit() && getNoHit()) { _errorMsg = "\n***** ERROR: request either -u for anyHit OR -v for noHit, not both. *****"; return false; } if (getWriteCount()) { if (getAnyHit()) { _errorMsg = "\n***** ERROR: request either -c for writeCount OR -u for anyHit, not both. *****"; return false; } else if (getWriteB()) { _errorMsg = "\n***** ERROR: request either -c for writeCount OR -wb for writeB, not both. *****"; return false; } else if (getQueryFileType() == FileRecordTypeChecker::BAM_FILE_TYPE && !getExplicitBedOutput()) { _errorMsg = "\n***** ERROR: writeCount option is not valid with BAM query input, unless bed output is specified with -bed option. *****"; return false; } } if (_haveFraction && (_overlapFraction <= 0.0 || _overlapFraction > 1.0)) { _errorMsg = "\n***** ERROR: _overlapFraction must be in the range (0.0, 1.0]. *****"; return false; } if (getUseDBnameTags() && _dbNameTags.size() != _dbFileIdxs.size()) { _errorMsg = "\n***** ERROR: Number of database name tags given does not match number of databases. *****"; return false; } if (getWriteOverlap()) { if (getWriteA()) { _errorMsg = "\n***** ERROR: request either -wa for writeA OR -wo for writeOverlap, not both. *****"; return false; } else if (getWriteB()) { _errorMsg = "\n***** ERROR: request either -wb for writeB OR -wo for writeOverlap, not both. *****"; return false; } else if (getWriteCount()) { _errorMsg = "\n***** ERROR: request either -c for writeCount OR -wo for writeOverlap, not both. *****"; return false; } else if (getAnyHit()) { _errorMsg = "\n***** ERROR: request either -u for anyHit OR -wo for writeOverlap, not both. *****"; return false; } else if (getQueryFileType() == FileRecordTypeChecker::BAM_FILE_TYPE && !getExplicitBedOutput()) { _errorMsg = "\n***** ERROR: writeAllOverlap option is not valid with BAM query input, unless bed output is specified with -bed option. *****"; return false; } } if (getWriteB() || getLeftJoin()) { if (getQueryFileType() == FileRecordTypeChecker::BAM_FILE_TYPE && !getExplicitBedOutput()) { cerr << endl << "*****" << endl << "*****WARNING: -wb and -loj are ignored with bam input, unless bed output is specified with -bed option." << endl << "*****" << endl; } } if (getSameStrand() && getDiffStrand()) { _errorMsg = "\n***** ERROR: request -s for sameStrand, or -S for diffStrand, not both. *****"; return false; } if (getQueryFileType() == FileRecordTypeChecker::BAM_FILE_TYPE && getPrintHeader()) { cerr << endl << "*****" << endl << "*****WARNING: -header option is not valid for BAM input." << endl << "*****" << endl; setPrintHeader(false); } if (getAnyHit() || getNoHit() || getWriteCount()) { setPrintable(false); } if (_files.size() < 2 ) { return false; } return true; }
bool ContextBase::handle_header() { setPrintHeader(true); markUsed(_i - _skipFirstArgs); return true; }
bool ContextGroupBy::handle_outheader() { setPrintHeader(true); markUsed(_i - _skipFirstArgs); return true; }