-
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
[MRG] added --name to merge #1480
Conversation
Codecov Report
@@ Coverage Diff @@
## latest #1480 +/- ##
==========================================
+ Coverage 89.76% 94.90% +5.13%
==========================================
Files 123 96 -27
Lines 19553 15942 -3611
Branches 1497 1497
==========================================
- Hits 17552 15129 -2423
+ Misses 1775 587 -1188
Partials 226 226
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
hi @hehouts please be sure to add your ORCID here - thanks! |
|
On Fri, Apr 23, 2021 at 05:48:32PM -0700, Hannah Eve Houts wrote:
> hey @ctb .
My OrcID is 0000-0002-7954-4793, is there a way to link it to the pull request or something?
you just did!
(no, there's no official way to link it :)
|
@ctb @bluegenes: please review |
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.
LGTM! Do you have the "merge and squash" button available to you, @hehouts? If so, please do the honors :)
sig2 = utils.get_test_data('2.fa.sig') | ||
sig63 = utils.get_test_data('63.fa.sig') | ||
|
||
assignedSigName = 'SIG_NAME' |
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.
for future reference, we typically use non-CamelCase variables for things that aren't class names. So it's MinHash
and SourmashSignature
but load_signature
. In this case, I would suggest assigned_sig_name
. As this is a test, however, there's no need to change it, this is just an FYI!
sourmash sig merge
now supports optional--name
to set the name of the merged signature.fixes #1213