Skip to content

Commit

Permalink
Merge pull request #4090 from vgteam/rna-crash
Browse files Browse the repository at this point in the history
Minor bug in previous PR
  • Loading branch information
jeizenga committed Sep 20, 2023
2 parents 89eefd9 + 191fc3e commit c7d6bbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/transcriptome.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2089,7 +2089,7 @@ bool Transcriptome::has_novel_exon_boundaries(const list<EditedTranscriptPath> &
return true;
}
}
if (include_transcript_ends && i + 1 != transcript_path.path.mapping_size()) {
if (include_transcript_ends || i + 1 != transcript_path.path.mapping_size()) {
// Check if right boundary is novel
if (cur_mapping.position().offset() + cur_mapping.edit(0).from_length() != _graph->get_length(cur_handle)) {
return true;
Expand Down

1 comment on commit c7d6bbb

@adamnovak
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

vg CI tests complete for merge to master. View the full report here.

16 tests passed, 0 tests failed and 0 tests skipped in 17524 seconds

Please sign in to comment.