Skip to content

feat: introduce protobuf schema for seqvars query output (#375) #1301

feat: introduce protobuf schema for seqvars query output (#375)

feat: introduce protobuf schema for seqvars query output (#375) #1301

Triggered via pull request August 6, 2024 11:13
@holtgreweholtgrewe
synchronize #430
Status Success
Total duration 14s
Artifacts

conventional-prs.yml

on: pull_request_target
title-format
3s
title-format
Fit to window
Zoom out
Zoom in

Annotations

3 warnings
the borrowed expression implements the required traits: src/strucvars/aggregate/cli.rs#L82
warning: the borrowed expression implements the required traits --> src/strucvars/aggregate/cli.rs:82:23 | 82 | to_writer(&mut tmp_file, &input_record)?; | ^^^^^^^^^^^^^ help: change this to: `tmp_file` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrows_for_generic_args
the borrowed expression implements the required traits: src/seqvars/aggregate/mod.rs#L221
warning: the borrowed expression implements the required traits --> src/seqvars/aggregate/mod.rs:221:52 | 221 | .put_cf(&cf_carriers, key.clone(), &db_carrier_data.to_vec()) | ^^^^^^^^^^^^^^^^^^^^^^^^^ help: change this to: `db_carrier_data.to_vec()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrows_for_generic_args
the borrowed expression implements the required traits: src/seqvars/aggregate/mod.rs#L212
warning: the borrowed expression implements the required traits --> src/seqvars/aggregate/mod.rs:212:50 | 212 | .put_cf(&cf_counts, key.clone(), &db_counts_data.to_vec()) | ^^^^^^^^^^^^^^^^^^^^^^^^ help: change this to: `db_counts_data.to_vec()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrows_for_generic_args = note: `#[warn(clippy::needless_borrows_for_generic_args)]` on by default