Conversation
* Variants are now stored in a set, not a list. The VariantCollection constructor can take any iterable of variants and will convert it to a set. * The `__str__` method now gives a short summary with just the variant count. The original `__str__` method, which gives a line for each variant, has been moved into the `variant_summary` method. * The `reference_names` and `gene_counts` methods have been converted to memoized properties.
* Remove VariantCollection.drop_duplicates since variants are now stored in a set. * Make Variant instances comparable. They are ordered by locus. * Update tests
Contributor
There was a problem hiding this comment.
I'm not sure about dropping this test entirely, we still probably want to ensure that the expect behavior happens when you initialize a variant collection with duplicates (though now that expected behavior is just the second assert below).
Contributor
|
Other than (1) adding a test which explicitly expects dropping duplicates by default and (2) moving |
Also update tests, and add a test that variant collections do not include duplicate variants.
Contributor
Author
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
__str__method now gives a short summary with just the variant count. The original__str__method, which gives a line for each variant, has been moved into thevariant_summarymethod.reference_namesandgene_countsmethods have been converted to memoized properties.