Skip to content

Commit

Permalink
[do_tag] v0.6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Rob Patro committed Nov 28, 2024
1 parent 45f3776 commit 9f938bb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ fn get_aligner_from_args(args: &Args) -> anyhow::Result<HeaderReaderAligner> {
let mut aligner = match args.seq_tech {
Some(SequencingTech::OntCDNA) | Some(SequencingTech::OntDRNA) => {
minimap2::Aligner::builder()
.with_index_threads(*idx_threads)
.map_ont()
.with_index_threads(*idx_threads)
.with_cigar()
.with_index(
args.reference
Expand All @@ -69,8 +69,8 @@ fn get_aligner_from_args(args: &Args) -> anyhow::Result<HeaderReaderAligner> {
.expect("could not construct minimap2 index")
}
Some(SequencingTech::PacBio) => minimap2::Aligner::builder()
.with_index_threads(*idx_threads)
.map_pb()
.with_index_threads(*idx_threads)
.with_cigar()
.with_index(
args.reference
Expand All @@ -80,8 +80,8 @@ fn get_aligner_from_args(args: &Args) -> anyhow::Result<HeaderReaderAligner> {
)
.expect("could not construct minimap2 index"),
Some(SequencingTech::PacBioHifi) => minimap2::Aligner::builder()
.with_index_threads(*idx_threads)
.map_hifi()
.with_index_threads(*idx_threads)
.with_cigar()
.with_index(
args.reference
Expand Down

0 comments on commit 9f938bb

Please sign in to comment.