-
Notifications
You must be signed in to change notification settings - Fork 79
Add cython example #3194
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
Add cython example #3194
Conversation
|
Mostly cribbed from https://github.com/terhorst/tskit_cython_example with a few modernisations and using the local tskit. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #3194 +/- ##
=======================================
Coverage 89.62% 89.62%
=======================================
Files 28 28
Lines 31969 31969
Branches 5873 5873
=======================================
Hits 28653 28653
Misses 1886 1886
Partials 1430 1430
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
jeromekelleher
left a comment
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.
Cool! Spotted a few things
| lwtc = LightweightTableCollection() | ||
| lwtc.fromdict(pyts.dump_tables().asdict()) | ||
| cdef tsk_treeseq_t ts | ||
| cdef int err = tsk_table_collection_build_index(lwtc.tables, 0) # this recently became necessary? |
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.
Why do we need to build an index if we're getting a TreeSequence in as parameter? The indexes should be there already
| check_tsk_error(ret) | ||
|
|
||
| print("Iterate forwards") | ||
| cdef int iter = tsk_tree_first(&tree) |
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.
iter might not be a great name, seems to hav some meaning in cytyhon?
| check_tsk_error(iter) | ||
|
|
||
| print("Iterate backwards") | ||
| iter = tsk = tsk_tree_last(&tree) |
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.
typo here?
7e00007 to
a89df54
Compare
|
Thanks - fixed up! |
Fixes #1124
Fixes #1018