Skip to content

Commit

Permalink
build: bump noodles (#444)
Browse files Browse the repository at this point in the history
  • Loading branch information
tshauck authored Mar 17, 2024
1 parent ea81d34 commit d0499b1
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 30 deletions.
48 changes: 24 additions & 24 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 @@ -38,7 +38,7 @@ arrow = { version = "50.0.0" }
async-trait = "0.1.77"
datafusion = { version = "36", features = ["compression", "parquet"] }
futures = "0.3"
noodles = { version = "0.65" }
noodles = { version = "0.66" }
object_store = { version = "0.9" }
tokio = { version = "1", features = ["io-util"] }
tokio-util = { version = "0.7.10", features = ["compat"] }
Expand Down
2 changes: 1 addition & 1 deletion exon/exon-bam/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ noodles = { workspace = true, features = [
"sam",
"bgzf",
] }
noodles-bgzf = { version = "0.26.0", features = ["libdeflate"] }
noodles-bgzf = { version = "0.27.0", features = ["libdeflate"] }
object_store = { workspace = true }
tokio = { workspace = true }
2 changes: 1 addition & 1 deletion exon/exon-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ noodles = { workspace = true, features = [
"csi",
"gtf",
] }
noodles-bgzf = { version = "0.26.0", features = ["libdeflate"] }
noodles-bgzf = { version = "0.27.0", features = ["libdeflate"] }
num_cpus = "1.16.0"
object_store = { workspace = true, features = ["aws"] }
pin-project = { version = "1.1.5", optional = true }
Expand Down
6 changes: 5 additions & 1 deletion exon/exon-core/src/udfs/sam/samflags.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,11 @@ impl ScalarUDFImpl for SAMScalarUDF {
pub fn register_udfs(ctx: &SessionContext) {
let udfs = vec![
SAMScalarUDF::new(Flags::SEGMENTED, "is_segmented".to_string()),
SAMScalarUDF::new(Flags::PROPERLY_ALIGNED, "is_properly_aligned".to_string()),
SAMScalarUDF::new(Flags::PROPERLY_SEGMENTED, "is_properly_aligned".to_string()),
SAMScalarUDF::new(
Flags::PROPERLY_SEGMENTED,
"is_properly_segmented".to_string(),
),
SAMScalarUDF::new(Flags::UNMAPPED, "is_unmapped".to_string()),
SAMScalarUDF::new(Flags::MATE_UNMAPPED, "is_mate_unmapped".to_string()),
SAMScalarUDF::new(
Expand Down
2 changes: 1 addition & 1 deletion exon/exon-sam/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ noodles = { workspace = true, features = [
"sam",
"bgzf",
] }
noodles-bgzf = { version = "0.26.0", features = ["libdeflate"] }
noodles-bgzf = { version = "0.27.0", features = ["libdeflate"] }
object_store = { workspace = true }
tokio = { workspace = true }
2 changes: 1 addition & 1 deletion exon/exon-vcf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ arrow = { workspace = true }
exon-common = { path = "../exon-common", version = "0.14.0" }
futures = { workspace = true }
noodles = { workspace = true, features = ["core", "async", "vcf", "bgzf"] }
noodles-bgzf = { version = "0.26.0", features = ["libdeflate"] }
noodles-bgzf = { version = "0.27.0", features = ["libdeflate"] }
object_store = { workspace = true }
tokio = { workspace = true }

0 comments on commit d0499b1

Please sign in to comment.