Skip to content

Commit

Permalink
Merge pull request #4491 from vgteam/add-identity-field-option
Browse files Browse the repository at this point in the history
Add "identity" as a TSV option
  • Loading branch information
adamnovak authored Jan 16, 2025
2 parents d6b219b + bf8a43e commit c751f44
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/readfilter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1534,6 +1534,8 @@ inline void ReadFilter<Alignment>::emit_tsv(Alignment& read, std::ostream& out)
out << softclip_start(read);
} else if (field == "softclip_end") {
out << softclip_end(read);
} else if (field == "identity") {
out << read.identity();
} else if (field == "mapping_quality") {
out << get_mapq(read);
} else if (field == "sequence") {
Expand Down

1 comment on commit c751f44

@adamnovak
Copy link
Member Author

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 17299 seconds

Please sign in to comment.