Skip to content

Commit

Permalink
Fix issue with missing references did not capture the entire found se…
Browse files Browse the repository at this point in the history
…quences.
  • Loading branch information
hhandika committed Sep 4, 2024
1 parent 23b3c2f commit 665aace
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/core/maf/convert.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,9 @@ impl<'a> MafConverter<'a> {
}
},
None => {
missing_refs.insert(target.source.to_string(), aln);
let name =
format!("{}-{}-{}", target.source, target.start, target.size,);
missing_refs.insert(name.replace(".", "_"), aln);
}
}
}
Expand Down

0 comments on commit 665aace

Please sign in to comment.