Skip to content

Commit

Permalink
change default mapper to strobealign
Browse files Browse the repository at this point in the history
  • Loading branch information
AroneyS committed May 31, 2024
1 parent 7dae171 commit f6d57fe
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const MAPPING_SOFTWARE_LIST: &[&str] = &[
"minimap2-no-preset",
"strobealign",
];
const DEFAULT_MAPPING_SOFTWARE: &str = "minimap2-sr";
const DEFAULT_MAPPING_SOFTWARE: &str = "strobealign";

lazy_static! {
pub static ref COVERM_CLUSTER_COMMAND_DEFINITION: GalahClustererCommandDefinition = {
Expand Down Expand Up @@ -50,13 +50,9 @@ fn add_mapping_options(manual: Manual) -> Manual {
Section::new("Mapping algorithm options")
.option(Opt::new("NAME").short("-p").long("--mapper").help(&format!(
"Underlying mapping software used {}. One of: {}",
default_roff("minimap2-sr"),
default_roff("strobealign"),
bird_tool_utils::clap_utils::table_roff(&[
&["name", "description"],
&[
&monospace_roff("minimap2-sr"),
&format!("minimap2 with '{}' option", &monospace_roff("-x sr"))
],
&[
&monospace_roff("strobealign"),
"strobealign using default parameters"
Expand All @@ -69,6 +65,10 @@ fn add_mapping_options(manual: Manual) -> Manual {
&monospace_roff("bwa-mem2"),
"bwa-mem2 using default parameters"
],
&[
&monospace_roff("minimap2-sr"),
&format!("minimap2 with '{}' option", &monospace_roff("-x sr"))
],
&[
&monospace_roff("minimap2-ont"),
&format!("minimap2 with '{}' option", &monospace_roff("-x map-ont"))
Expand Down

0 comments on commit f6d57fe

Please sign in to comment.