Skip to content

Commit

Permalink
fixed crash when --keep-genes is used with transcript filtering
Browse files Browse the repository at this point in the history
  • Loading branch information
gpertea committed Mar 26, 2021
1 parent 44af655 commit 94594ed
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions gff_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,9 @@ bool GffLoader::validateGffRec(GffObj* gffrec) {
}
}
}
return false;
}
if (gffrec->isGene() && keepGenes) return true;
return false;
} //transcript rejected
return true;
Expand Down

0 comments on commit 94594ed

Please sign in to comment.