Hi,
I was trying to use this crate to compute the consensus sequences of a few sequences. Here is the code that I used:
let sequences: Vec<&str> = [
"CGTCAAT",
"CCACGTCAAT",
"CGTCAAT",
"CGTCAATGCTA",
].to_vec();
let mut aligner = unsafe { ab_poa::abpoa_wrapper::AbpoaAligner::new_with_example_params() };
let consensus = unsafe {
aligner.consensus_from_seqs(&sequences)
};
However, I got an 17275 segmentation fault when run this code. I updated the bindgen to 0.70.0 to be compatible to the current version.
Could you please provide some suggestions how to resolve this?
Thanks,
Hang
Hi,
I was trying to use this crate to compute the consensus sequences of a few sequences. Here is the code that I used:
However, I got an 17275 segmentation fault when run this code. I updated the bindgen to 0.70.0 to be compatible to the current version.
Could you please provide some suggestions how to resolve this?
Thanks,
Hang