Skip to content

Commit

Permalink
Merge pull request #43 from nanxstats/news
Browse files Browse the repository at this point in the history
Update news for protr 1.7-1
  • Loading branch information
nanxstats authored Apr 20, 2024
2 parents a3af410 + 233cb3e commit 1b88c57
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 5 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: protr
Version: 1.7-0
Version: 1.7-1
Title: Generating Various Numerical Representation Schemes for Protein Sequences
Description: Comprehensive toolkit for generating various numerical
features of protein sequences described in Xiao et al. (2015)
Expand Down
26 changes: 23 additions & 3 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
# protr 1.7-1

## New features

- `crossSetSim()` now gains two new arguments `batches` and `verbose`.

The `batches` argument allows users to split the similarity computations
into multiple batches, which is useful when dealing with
a large number of sequences and limited RAM.
The `verbose` argument enables progress updates during the computation.
This brings `crossSetSim()` to feature parity with `parSeqSim()`.
(thanks, @ofleitas, #41)

- A new function `crossSetSimDisk()` has been implemented as a disk-based
version of `crossSetSim()`.

This function follows a similar approach to `parSeqSimDisk()`,
where partial results from each batch are cached on the hard drive and
merged at the end. This allows for processing larger protein sequence
sets that may not fit into RAM (#41).

# protr 1.7-0

## New features
Expand All @@ -10,13 +31,12 @@
## Bug fixes

- Fixed a minor bug in `extractProtFP()` and `extractProtFPGap()`
when `index = NULL` (thanks, @fcampelo
[#30](https://github.com/nanxstats/protr/pull/30)).
when `index = NULL` (thanks, @fcampelo, #30).

## Improvements

- Added a comment about `system.file()` usage to avoid confusion
(thanks, @jonalv [#31](https://github.com/nanxstats/protr/pull/31)).
(thanks, @jonalv, #31).
- Replaced previous CI/CD solutions with GitHub Actions workflows.
- Fixed broken or moved links in function documentation and vignettes.
- Replaced the original logo with a new hex sticker logo.
Expand Down
1 change: 0 additions & 1 deletion R/misc-06-acc.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
#' @param mat A \code{p * n} matrix. Each row represents one scale
#' (total \code{p} scales), each column represents one amino acid position
#' (total \code{n} amino acids).
#'
#' @param lag The lag parameter. Must be less than the amino acids.
#'
#' @return A length \code{lag * p^2} named vector, the element names are
Expand Down

0 comments on commit 1b88c57

Please sign in to comment.