Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor BAM record class to avoid lower casing all tag names #104

Merged
merged 1 commit into from
Nov 7, 2024

Conversation

cmdcolin
Copy link
Collaborator

@cmdcolin cmdcolin commented Nov 7, 2024

Lower case tags and upper case tags are unique namespaces in the SAM spec

For legacy reasons, the @gmod/bam followed basically what JBrowse 1 did but that included lower casing everything, and making all variable access go through a "feature.get('somestring')" method for both core data like feature.get('start') and and arbitrary tags like feature.get('XS')

this changes the code to be more like the CRAM codebase, which uses

for core attribytes: feature.start (where feature.start is a "getter" on the record class)

and for tags: feature.tags.XS (where feature.tags is a getter for an object for a Record<string,unknown>

@cmdcolin cmdcolin force-pushed the refactor_bam_features branch 2 times, most recently from 4576be0 to 2424f0b Compare November 7, 2024 01:51
@cmdcolin
Copy link
Collaborator Author

cmdcolin commented Nov 7, 2024

@cmdcolin cmdcolin force-pushed the refactor_bam_features branch from 2424f0b to a04ddc3 Compare November 7, 2024 02:58
@cmdcolin cmdcolin force-pushed the refactor_bam_features branch from a04ddc3 to d3ac72f Compare November 7, 2024 03:08
@cmdcolin cmdcolin merged commit 0e328c0 into master Nov 7, 2024
1 check passed
@cmdcolin cmdcolin deleted the refactor_bam_features branch November 7, 2024 04:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant