Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use single quotes for C and C++ #21

Merged
merged 1 commit into from
Sep 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ Authors@R: c(
comment = c(ORCID = "0000-0002-0250-5673"))
)
Description: Provides an R interface for 'SSW' (Striped Smith-Waterman)
via its 'Python' binding 'ssw-py'. 'SSW' is a fast C/C++ implementation
of the Smith-Waterman algorithm for pairwise sequence alignment
using Single-Instruction-Multiple-Data (SIMD) instructions.
via its 'Python' binding 'ssw-py'. 'SSW' is a fast 'C' and 'C++'
implementation of the Smith-Waterman algorithm for pairwise sequence
alignment using Single-Instruction-Multiple-Data (SIMD) instructions.
'SSW' enhances the standard algorithm by efficiently returning alignment
information and suboptimal alignment scores.
The core 'SSW' library offers performance improvements for various
Expand All @@ -17,7 +17,7 @@ Description: Provides an R interface for 'SSW' (Striped Smith-Waterman)
structural variant detection, and read-overlap graph generation.
These features make 'SSW' particularly useful for genomic applications.
Zhao et al. (2013) <doi:10.1371/journal.pone.0082138> developed the
original C/C++ implementation.
original 'C' and 'C++' implementation.
License: MIT + file LICENSE
URL: https://nanx.me/ssw-r/, https://github.com/nanxstats/ssw-r
BugReports: https://github.com/nanxstats/ssw-r/issues
Expand Down