-
Notifications
You must be signed in to change notification settings - Fork 308
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
[ADAM-1996] Load and save VariantContexts as partitioned Parquet. #2001
[ADAM-1996] Load and save VariantContexts as partitioned Parquet. #2001
Conversation
override val isPartitioned: Boolean = true, | ||
override val optPartitionBinSize: Option[Int] = Some(1000000), | ||
override val optLookbackPartitions: Option[Int] = Some(1)) extends VariantContextRDD | ||
with DatasetBoundGenomicDataset[VariantContext, VariantContextProduct, VariantContextRDD] { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not fully aware of the implications of adding this trait, thought it preferable to copying the referenceRegionsToDatasetQueryString
and filterByOverlappingRegions
methods
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This trait should be mixed in, so LGTM.
2 similar comments
Test PASSed. |
Test PASSed. |
Merged! Thanks @heuermh! |
Fixes #1996.