Skip to content

Commit

Permalink
remove unneeded reference
Browse files Browse the repository at this point in the history
  • Loading branch information
tedil committed Oct 11, 2024
1 parent 663d67c commit 2497598
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/annotate/strucvars/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2960,7 +2960,7 @@ pub async fn run_vcf_to_jsonl(
let uuid = Uuid::from_bytes(uuid_buf);

if record.alternate_bases().is_empty()
|| record.alternate_bases().as_ref() == &["<*>".to_string()]
|| record.alternate_bases().as_ref() == ["<*>".to_string()]
{
// REF-only, skip
tracing::warn!("skipping REF-only / empty ALT record {:?}", record);
Expand Down

0 comments on commit 2497598

Please sign in to comment.