-
Notifications
You must be signed in to change notification settings - Fork 80
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
provide .copy()
method for both SourmashSignature()
and MinHash
#1485
Comments
note that |
actually, if we go with #1508, then we won't need |
I would like to work on this. @ctb |
Could you provide a little clarification on what needs to be done here? Which files/functions need to be changed, etc. |
Here's some reading, too - https://docs.python.org/3/library/copy.html,
So:
|
Thanks, I will check it out! |
I'm getting tired of using
copy.copy(...)
😆The idea here is to:
copy
methods on both theSourmashSignature
andMinHash
classes. Naively,copy.copy(self)
should work?copy.copy(...)
in the current sourmash code with the new method.The text was updated successfully, but these errors were encountered: