Skip to content

Commit

Permalink
Add command to propagate annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
dkhofer committed Nov 12, 2024
1 parent e32bb2c commit d34fd80
Show file tree
Hide file tree
Showing 10 changed files with 313 additions and 114 deletions.
147 changes: 42 additions & 105 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ include_dir = "0.7.4"
intervaltree = "0.2.7"
itertools = "0.13.0"
lexical-core = "1.0.2"
noodles = { version = "0.78.0", features = ["bgzf", "core", "vcf", "fasta", "async"] }
noodles = { version = "0.85.0", features = ["async", "bgzf", "core", "fasta", "gff", "vcf"] }
petgraph = "0.6.5"
remove_dir_all = "0.8.4"
rusqlite = { version = "0.31.0", features = ["bundled", "array", "session"] }
Expand Down
2 changes: 2 additions & 0 deletions fixtures/aa.fa
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
>m123
AA
3 changes: 3 additions & 0 deletions fixtures/simple.gff
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
##gff-version 3
m123 gen-test Region 1 34 . + . ID=m123_region;Is_circular=false;genome=chromosome;mol_type=genomic DNA
m123 gen-test Gene 5 20 . + . ID=gene-a0001;gene_biotype=protein_coding
1 change: 1 addition & 0 deletions src/annotations.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod gff;
Loading

0 comments on commit d34fd80

Please sign in to comment.