Skip to content

Commit

Permalink
actions: osx: Install less.
Browse files Browse the repository at this point in the history
  • Loading branch information
wwood committed Sep 17, 2024
1 parent 2f775ba commit f62adf7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-coverm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
fail-fast: false
matrix:
os: ["macos-latest"]
python-version: ["3.11"]
python-version: ["3.8"] # Must use 3.8 so that minimap2 installs
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
Expand Down
4 changes: 2 additions & 2 deletions coverm-osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ dependencies:
- minimap2 >=2.24
- bwa >=0.7.17
# - bwa-mem2 # bwa-mem2 does not run on osx
- dashing >= 0.4.0
# - dashing >= 0.4.0 # not available on osx-arm64
- fastani >= 1.3
- strobealign >= 0.11.0 # newest version at time of implementation
# - strobealign >= 0.11.0 # not available on osx-arm64
2 changes: 1 addition & 1 deletion src/mapping_index_maintenance.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ impl TemporaryIndexStruct {
| MappingProgram::STROBEALIGN => {}
};
if let Some(t) = num_threads {
cmd.arg("-t").arg(&format!("{}", t));
cmd.arg("-t").arg(format!("{}", t));
}
cmd.arg("-d").arg(&index_path).arg(reference_path);
}
Expand Down

0 comments on commit f62adf7

Please sign in to comment.