-
Notifications
You must be signed in to change notification settings - Fork 74
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
Refseq update #1944
Refseq update #1944
Conversation
Codecov Report
@@ Coverage Diff @@
## main #1944 +/- ##
==========================================
+ Coverage 93.32% 93.35% +0.02%
==========================================
Files 27 27
Lines 25207 25494 +287
Branches 1108 1108
==========================================
+ Hits 23525 23800 +275
- Misses 1648 1660 +12
Partials 34 34
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
63e8e40
to
d2034bf
Compare
98c2f5f
to
baa7179
Compare
c5dc8c2
to
f20cede
Compare
I think this is ready for a look @benjeffery, if you wouldn't mind. I think most of the stuff has been covered, other than some issues that have popped up on the TableCollection tests, some extra file format tests, and some minimal docs. Do we bump the file format and dict encoding minor numbers for this? |
Good to get your eyes on this if possible please @benjeffery - hopefully I can get it finished in one more pass, it would be really helpful to see what you think. |
de6cd9d
to
d43961e
Compare
Sorry, having a proper look now. |
OK, this is ready for review I think! I think I've covered all the high-level things and opened issues for the stuff we haven't done. Do you see anything missing @benjeffery? |
d43961e
to
2df7ebf
Compare
2df7ebf
to
11c408e
Compare
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.
Couple of small things, overall I think this is great.
I have some concern about .data
being a string at this point when we know we want to do zero-copy via arrays. It would likely be a breaking change to do so. Maybe we use as_string
or similar for now at the public API? Then data
can be the array later?
e0bd0b7
to
43921cc
Compare
I've opened issues #1989 and #1988 to address this - what do you think? Basically, the |
Thanks for the review @benjeffery, I think I've addressed those points. Ready to go I think! |
Great, if |
WIP, still working out the details.