Skip to content
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

Flatgfa filesystem restructure #191

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,7 @@ pollen/target
polbin/target
pollen/*.rlib

flatgfa/target
flatgfa/**/target

slow_odgi/dist/
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ test-slow-odgi: fetch
test-flatgfa: fetch
cd flatgfa ; cargo build

turnt -e flatgfa_mem -e flatgfa_file -e flatgfa_file_inplace tests/*.gfa
turnt -v -e flatgfa_mem -e flatgfa_file -e flatgfa_file_inplace tests/*.gfa

-turnt --save -v -e chop_oracle_fgfa tests/*.gfa
turnt -v -e flatgfa_chop tests/*.gfa
Expand Down
56 changes: 28 additions & 28 deletions flatgfa-py/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions flatgfa-py/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use flatgfa::pool::Id;
use flatgfa::{self, file, print, FlatGFA, HeapGFAStore};
use flatgfa::fgfa_ds::{file, print, pool::Id};
use flatgfa::{self, FlatGFA, HeapGFAStore};
use pyo3::exceptions::PyIndexError;
use pyo3::prelude::*;
use pyo3::types::{PyBytes, PySlice};
Expand Down
68 changes: 34 additions & 34 deletions flatgfa/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading