Both geneset() and snp_dataset() were renamed at some point (genome_features() and snp_calls() respectively), but the old names were kept as silent shims; they just forward the call without any warning.
This means users who are still calling the old names have no idea they're using deprecated functions. They'll only find out when a future version removes them entirely, which would be pretty frustrating.
Would be good to add a DeprecationWarning to both, so people know to update their code
Both
geneset()andsnp_dataset()were renamed at some point (genome_features()andsnp_calls()respectively), but the old names were kept as silent shims; they just forward the call without any warning.This means users who are still calling the old names have no idea they're using deprecated functions. They'll only find out when a future version removes them entirely, which would be pretty frustrating.
Would be good to add a DeprecationWarning to both, so people know to update their code