Bioconductor 3.23 Release Schedule

Bioconductor has moved to GIT for contributed packages; the subversion logs are no longer active. The following are the git logs.

GIT Logs

This is a list of recent commits to git.bioconductor.org, the devel(development) branch of the Bioconductor GIT repository.

This list is also available as an RSS feed (devel branch), and RSS feed (release branch)

Package: biomformat
Commit: 68ba178b54fba5371ae043187b2cc1796f4c26ec
Author: Paul J. McMurdie <joey711@gmail.com>
Date: 2026-03-15 12:21:42 -0700
Commit message:

 Update .gitignore
 
Package: biomformat
Commit: bde886213e423a95fb4a1e16903f825fdd1e27c5
Author: Paul J. McMurdie <joey711@gmail.com>
Date: 2026-03-15 12:13:02 -0700
Commit message:

 Update Joseph Paulson email to joseph.paulson@yale.edu (v1.39.16)

Updated Authors@R person() entry for Joseph N. Paulson from
jpaulson@jimmy.harvard.edu to joseph.paulson@yale.edu.

R CMD check: 0 ERRORs, 0 NOTEs, 2 pre-existing vignette WARNINGs.
 
Package: biomformat
Commit: c2c99e1ba32a9408969cb3198b6ea770133b3619
Author: Paul J. McMurdie <joey711@gmail.com>
Date: 2026-03-15 12:04:00 -0700
Commit message:

 Fix Authors@R: replace deprecated Author/Maintainer fields (v1.39.15)

BiocCheck >= 1.46 ERRORs on the presence of the old Author: and
Maintainer: fields — they must be replaced with Authors@R: using
person() with role=c('aut','cre') for the maintainer. This was the
root cause of the Bioconductor team's 'invalid email' complaint: the
field format itself was structurally invalid per current BiocCheck
rules, independent of the address string.

Also:
- Update maintainer email to joey711@gmail.com (reachable address).
- Add .BiocCheck to .Rbuildignore so BiocCheck output folders are
  never included in the built tarball.

R CMD check: 0 ERRORs, 0 NOTEs, 2 pre-existing vignette WARNINGs.
BiocCheck: 1 ERROR (Watched Tags on support.bioconductor.org —
  requires manual web action, cannot be fixed in code).
 
Package: biomformat
Commit: 27866a7253bf198020cadc94dd447d99ec1561b1
Author: Paul J. McMurdie <joey711@gmail.com>
Date: 2026-03-15 11:38:23 -0700
Commit message:

 Fix email address in DESCRIPTION (v1.39.15)

Updated Maintainer and Author email from mcmurdie@alumni.stanford.edu
to joey711@gmail.com as requested by the Bioconductor team. The alumni
Stanford address was flagged as potentially unreachable.

R CMD check: 0 ERRORs, 0 NOTEs, 2 pre-existing vignette WARNINGs.
 
Package: plyranges
Commit: 9bfc93addec3c7f58b66770d850baefffe513feb
Author: Mike Love <mikelove@users.noreply.github.com>
Date: 2026-03-15 15:04:49 -0400
Commit message:

 version bump
 
Package: plyranges
Commit: 1f434baf6a045fd7fc9a217f1d4675a1935473dd
Author: Mike Love <mikelove@users.noreply.github.com>
Date: 2026-03-15 14:52:39 -0400
Commit message:

 moving README content to a more-examples vignette
 
Package: biomformat
Commit: a5a1f6c171ae939a731e60185fd4d0f4e5e09087
Author: Paul J. McMurdie <joey711@gmail.com>
Date: 2026-03-15 10:48:42 -0700
Commit message:

 Add vignette sections: make_biom workflow + named subsetting (v1.39.14)

Added two new sections to vignettes/biomformat.Rmd:

1. 'Constructing a BIOM from R data' (addresses Issues #4, #6, #9):
   End-to-end make_biom() workflow with an ASV count matrix and a
   list-valued taxonomy column (the dada2/amplicon pattern). Shows
   write_biom()/read_biom() round-trip, and includes a callout
   directing large-dataset users to write_hdf5_biom() (Issue #8).
   The HDF5 code chunk is guarded by eval=requireNamespace('rhdf5').

2. 'Subsetting biom_data() by name': demonstrates the previously
   undocumented character-vector row/col subsetting interface.

R CMD check: 0 ERRORs, 0 NOTEs, 2 pre-existing vignette WARNINGs.
 
Package: biomformat
Commit: 5d8dcdcfdef8cb5adbf424cef3d51431e19ef56d
Author: Paul J. McMurdie <joey711@gmail.com>
Date: 2026-03-15 10:48:26 -0700
Commit message:

 Fix #8: document write_biom() 2^31-1 byte size limit (v1.39.13)

Added @details to write_biom() documentation explaining that jsonlite
serialises the entire BIOM object to a single R character string, which
is subject to R's 2^31-1 byte limit on character scalars. Users with
very large datasets are now explicitly directed to write_hdf5_biom()
which streams to HDF5 and has no such limitation.

Regenerated man/write_biom.Rd via roxygen2::roxygenise().

R CMD check: 0 ERRORs, 0 NOTEs, 2 pre-existing vignette WARNINGs.
 
Package: biomformat
Commit: 948e1885fe722418c0669d15284f2f82fedf4821
Author: Paul J. McMurdie <joey711@gmail.com>
Date: 2026-03-15 10:48:10 -0700
Commit message:

 Fix #7: add zero-column HDF5 fixture and regression tests (v1.39.12)

Added inst/extdata/zero_col_hdf5.biom — a minimal 3×3 HDF5 BIOM where
sample 'ZeroSamp' (column 2) has all-zero counts. The CCS indptr for
the sample-major storage is [0,3,3,6]: indptr[1]==indptr[2] means
ZeroSamp has zero non-zero entries, directly exercising the edge case
reported in Issue #7.

Added inst/extdata/create_zero_col_hdf5.R: reproducible generation
script using rhdf5 directly.

Added two tests in test-hdf5-write.R (both guarded by
skip_if_not_installed('rhdf5')):
  - Read fixture, verify ZeroSamp column is all zeros, Samp1=[1,3,5],
    Samp3=[2,4,6], and dimensions/names are correct.
  - Round-trip through write_hdf5_biom() + read_biom(): ZeroSamp
    remains all-zero, full matrix equality preserved.

These tests confirm that generate_matrix() (rewritten in v1.39.8 to
use sparseMatrix directly from CCS triplets) correctly handles the
case where diff(indptr) is 0 for a sample column.

R CMD check: 0 ERRORs, 0 NOTEs, 2 pre-existing vignette WARNINGs.
 
Package: biomformat
Commit: 16c3e53085fbc1e47c2d6faf6018135de89b8c22
Author: Paul J. McMurdie <joey711@gmail.com>
Date: 2026-03-15 10:37:07 -0700
Commit message:

 Fix #4 #6: make_biom() NULL id as {}, taxonomy as bare array (v1.39.11)

Issue #4: NULL id was serialised as {} (empty JSON object) by jsonlite
because toJSON(list(id=NULL,...), auto_unbox=TRUE) maps NULL to {}.
Fix: make_biom() substitutes 'No Table ID' when id is NULL, matching
the BIOM spec default and ensuring write_biom() -> read_biom() is a
lossless round-trip. validObject() now succeeds on the round-tripped
object.

Issue #6: when observation_metadata (or sample_metadata) is a
data.frame with list columns (e.g. a 'taxonomy' column holding
character vectors of rank assignments, as produced by dada2),
the metadata was serialised as a bare JSON array ([[...]]) instead
of a named JSON object ({taxonomy:[...]}). The BIOM spec and
downstream tools (phyloseq import_biom(), the Python biom library)
require the named-object form. Root cause: as.matrix() on a
list-column data.frame produces a list-matrix; as.list(row) then
strips field names. Fix: detect list-column data.frames and build
per-row metadata directly as named lists, bypassing as.matrix().
Closes #6. Also resolves user-support Issue #9 (dada2 -> biom ->
write_biom workflow now works correctly).

Adds 4 regression tests in test-IO.R.

R CMD check: 0 ERRORs, 0 NOTEs, 2 pre-existing vignette WARNINGs.
 
Package: biomformat
Commit: b8cf9046896ee782e04ebec59aa08d88353056ea
Author: Paul J. McMurdie <joey711@gmail.com>
Date: 2026-03-15 10:23:32 -0700
Commit message:

 Remove HANDOFF.md (agent handoff artefact, not part of package)
 
Package: biomformat
Commit: 86db19410c4687c3ec4abc3c442b1b7ddc1b78ff
Author: Paul J. McMurdie <joey711@gmail.com>
Date: 2026-03-15 10:17:06 -0700
Commit message:

 Add HANDOFF.md: GitHub issues + test gaps + vignette gaps for next agent
 
Package: HiSpaR
Commit: 11f59c87eef0d845bde84124c63aa6b546a5f437
Author: masterstormtrooper <lyc22@mails.tsinghua.edu.cn>
Date: 2026-03-16 00:30:18 +0800
Commit message:

 bump version to 0.99.5
 
Package: HiSpaR
Commit: 9066a098eae9afea791debc709ad56318036468d
Author: masterstormtrooper <lyc22@mails.tsinghua.edu.cn>
Date: 2026-03-16 00:28:47 +0800
Commit message:

 add tests for HiCExperiment input, safe_mode=TRUE, and output_dir auto-creation
 
Package: HiSpaR
Commit: c954cc2c5d61519be5341549389bfccd5812fa2a
Author: masterstormtrooper <lyc22@mails.tsinghua.edu.cn>
Date: 2026-03-16 00:12:04 +0800
Commit message:

 bump version to 0.99.4
 
Package: HiSpaR
Commit: d6c954735c151c8b13495b0a469b872434f97b6b
Author: masterstormtrooper <lyc22@mails.tsinghua.edu.cn>
Date: 2026-03-16 00:10:42 +0800
Commit message:

 convert key parameters from section to paragraph
 
Package: HiSpaR
Commit: ee3fba82b93325cdb55a01ed05f7009bcd319559
Author: masterstormtrooper <lyc22@mails.tsinghua.edu.cn>
Date: 2026-03-15 23:42:53 +0800
Commit message:

 bump version to 0.99.3
 
Package: HiSpaR
Commit: ad484e50f990bc573e56cce2c2f356a03d2b210d
Author: masterstormtrooper <lyc22@mails.tsinghua.edu.cn>
Date: 2026-03-15 23:42:07 +0800
Commit message:

 remove post_scale_positions.txt, update vignette accordingly
 
Package: HiSpaR
Commit: adb86bce5ae0fc07e33f529df19a835251cf75f0
Author: masterstormtrooper <lyc22@mails.tsinghua.edu.cn>
Date: 2026-03-15 23:40:28 +0800
Commit message:

 refined RMD
 
Package: HiSpaR
Commit: 8087fea834ef1627cd9a2dc4fb698d4cc344dfab
Author: masterstormtrooper <lyc22@mails.tsinghua.edu.cn>
Date: 2026-03-15 23:33:48 +0800
Commit message:

 update vignette: add pre-code summary, fix mcmc progress and saved files descriptions
 
Package: HiSpaR
Commit: 72154ecb1c0d065457e90611135e0c87ed823fa7
Author: masterstormtrooper <lyc22@mails.tsinghua.edu.cn>
Date: 2026-03-15 23:30:24 +0800
Commit message:

 refined rmd
 
Package: HiSpaR
Commit: 8977d3efc3ec4dbc08326bd7a8ca11169a0eec07
Author: masterstormtrooper <lyc22@mails.tsinghua.edu.cn>
Date: 2026-03-15 23:28:34 +0800
Commit message:

 remove 'contact matrix set successfully' from output
 
Package: HiSpaR
Commit: 1685b803a92a0259ed282705511edbb45aec2b57
Author: masterstormtrooper <lyc22@mails.tsinghua.edu.cn>
Date: 2026-03-15 23:27:05 +0800
Commit message:

 fix saved files list to match what is actually written to disk
 
Package: HiSpaR
Commit: 27b97ef0f2b7e718d9dd56e22dd099fb4c16dc2f
Author: masterstormtrooper <lyc22@mails.tsinghua.edu.cn>
Date: 2026-03-15 23:16:04 +0800
Commit message:

 simplify verbose output: remove redundant lines, condense phases to [Phase] Completed
 
Package: HiSpaR
Commit: 213069efe0bb4c8200dc364c330693c2b58e202f
Author: masterstormtrooper <lyc22@mails.tsinghua.edu.cn>
Date: 2026-03-15 23:07:05 +0800
Commit message:

 refined rmd
 
Package: lcmsPlot
Commit: 9875875fb402704ecb425f3455044e093c249b8d
Author: Ossama Edbali <ossedb@gmail.com>
Date: 2026-03-15 15:07:34 +0000
Commit message:

 chore: migrate data.frame usage to tibble throughout (#28)

Replace data.frame(), as.data.frame(), and is.data.frame() with their
tibble equivalents (tibble(), as_tibble(), is_tibble()) across all R
source files. Add tibble to Imports in DESCRIPTION and NAMESPACE.

Also fix three related issues found during the migration:
- Correct all_of() call in creators-chromatograms.R to pass a single
  character vector instead of multiple arguments
- Qualify bare tibble() calls in @examples as tibble::tibble() so
  examples run without the package namespace attached
- Expand get_metadata() docs with @section entries covering all nine
  dispatch methods (MChromatograms, XChromatograms, XChromatogram,
  XcmsRawList, ExternalDataSource, DBIConnection) 
Package: CDI
Commit: 7c325d28d3e6f666a9d2ea6bf59bfd99fddab127
Author: Jiyuan Fang <jf243@duke.edu>
Date: 2026-03-15 23:02:33 +0800
Commit message:

 Sync bug fix from RELEASE_3_22
 
Package: CDI
Commit: e097896317ec54ed7a20dcd7065e3b0f9b67c849
Author: Jiyuan Fang <jf243@duke.edu>
Date: 2026-03-15 22:58:01 +0800
Commit message:

 Remove built package tarball
 
Package: CDI
Commit: b181918034df2aac709196e9710d0aabfd93b745
Author: Jiyuan Fang <jf243@duke.edu>
Date: 2026-03-15 22:42:42 +0800
Commit message:

 fix bugs caused by Seurat update
 
Package: postNet
Commit: 81dfe2f247bbb857f21dc5db7854c706a66d3c64
Author: Krzysztof Szkop <krzysztof.szkop@gmail.com>
Date: 2026-03-15 14:57:35 +0000
Commit message:

 KS
 
Package: HiSpaR
Commit: ac1cbdd90cb75fbc637db1eeec17fbd69c3e3547
Author: masterstormtrooper <lyc22@mails.tsinghua.edu.cn>
Date: 2026-03-15 22:44:53 +0800
Commit message:

 bump version to 0.99.2
 
Package: HiSpaR
Commit: 2e2ead6fe36c9b868ba0859902bc49573c7cc9a3
Author: masterstormtrooper <lyc22@mails.tsinghua.edu.cn>
Date: 2026-03-15 22:40:33 +0800
Commit message:

 address bioconductor reviewer feedback (almeidasilvaf)

- fix url/bugreports typo in description (hispar not hispa)
- expand unit tests to cover non-square input, invalid output_dir, filter_quantile with/without loci removed, safe_mode=false, verbose=false
- add su1_contact_mat and hicexperiment class descriptions to vignette
- move key parameters section before the example code chunk
- add output description section after example chunk (verbose output, return value, model interpretation)
- replace devtools/r cmd install instructions with biocmanager::install in readme
 
Package: HiSpaR
Commit: d7349291582fc7603f6f12d6098a74f37e0f5cbc
Author: masterstormtrooper <lyc22@mails.tsinghua.edu.cn>
Date: 2026-03-15 21:46:17 +0800
Commit message:

 modified gitignore
 
Package: postNet
Commit: f4df36db2081db3632bdf917b563088efbdb8fdc
Author: Krzysztof Szkop <krzysztof.szkop@gmail.com>
Date: 2026-03-15 14:22:45 +0000
Commit message:

 KS
 
Package: postNet
Commit: c0f68ad5fa84af1c2c7843c64d75845365b7fac7
Author: Krzysztof Szkop <krzysztof.szkop@gmail.com>
Date: 2026-03-15 11:18:21 +0000
Commit message:

 KS
 
Package: postNet
Commit: 79648791da86548d29a994a1eb858813ffa68ac7
Author: Krzysztof Szkop <krzysztof.szkop@gmail.com>
Date: 2026-03-15 11:16:13 +0000
Commit message:

 KS
 
Package: postNet
Commit: ea1d7489f81d7b25620a8668235c911166ede07e
Author: Krzysztof Szkop <krzysztof.szkop@gmail.com>
Date: 2026-03-15 10:32:20 +0000
Commit message:

 KS
 
Package: postNet
Commit: 558556555bb361649f7fe216135c1fde8e6ab265
Author: Krzysztof Szkop <krzysztof.szkop@gmail.com>
Date: 2026-03-15 10:03:23 +0000
Commit message:

 KS
 
Package: postNet
Commit: 69456dafa291a6927dc6c150136d2b08f956abef
Author: Krzysztof Szkop <krzysztof.szkop@gmail.com>
Date: 2026-03-15 09:51:19 +0000
Commit message:

 KS
 
Package: postNet
Commit: db28d36f7a06ce714ad6725877bfdb4537bf9312
Author: Krzysztof Szkop <krzysztof.szkop@gmail.com>
Date: 2026-03-15 09:46:50 +0000
Commit message:

 KS
 
Package: Rhdf5lib
Commit: f6fdc2f75af560603bde25dc179234a0b8a97758
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-14 15:05:01 +0100
Commit message:

 Ignore warnings on Fedora
 
Package: Rhdf5lib
Commit: 1688b858d53f14a053f64ab72ef1f3a618b978a1
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-14 14:40:23 +0100
Commit message:

 Bump version
 
Package: Rhdf5lib
Commit: d36d1bf7b7598c375f7b974d090b010f2ef01eee
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-14 14:39:42 +0100
Commit message:

 Fix linking on Fedora
 
Package: Rhdf5lib
Commit: 4553424542b32046241277bfa8cffce883b4ab13
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-13 17:35:37 +0100
Commit message:

 Remove private headers
 
Package: Rhdf5lib
Commit: e413f970e65471cdeed41e149d4bc55b19fbc014
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-13 15:11:51 +0100
Commit message:

 Remove now unnecessary patching script
 
Package: Rhdf5lib
Commit: ba1ab0513a072a941ae888251b06857471b0fe6a
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-13 15:09:24 +0100
Commit message:

 Remove outdated README
 
Package: Rhdf5lib
Commit: 970e0e0a665ab649603ba6f8cc45b3289bf697e3
Author: Jeroen Ooms <jeroenooms@gmail.com>
Date: 2026-03-13 16:22:44 +0100
Commit message:

 Change universe parameter to 'bioc' in workflow 
Package: biomformat
Commit: 4652383dd94fcb38e1543d41d2fc4d79d615c801
Author: Paul J. McMurdie <joey711@gmail.com>
Date: 2026-03-14 18:21:09 -0700
Commit message:

 Milestone 6: updated vignette with HDF5, tidy, SE, purrr sections (v1.39.10)

Extended the package vignette with four new sections, all guarded with
requireNamespace() so the vignette builds cleanly when optional Suggests
packages are absent:

* HDF5 (BIOM v2) I/O: read_biom() magic-byte routing, write_hdf5_biom()
  round-trip, and JSON->HDF5 conversion example.
* Tidy long-format: as.data.frame(biom) producing one row per
  (feature x sample) pair with metadata joined; as_tibble.biom().
* purrr-style workflows: per-sample total counts and Shannon diversity
  using purrr::map_dbl + dplyr, with base-R tapply fallback.
* SummarizedExperiment interop: biom_to_SummarizedExperiment() and
  as(x, 'SummarizedExperiment'), showing assay/colData/rowData access.
* Session info section.

Vignette renders cleanly (50 chunks, 0 errors) with all Suggests
packages present. R CMD check: 0 ERRORs, 0 NOTEs, 2 pre-existing
vignette WARNINGs (inst/doc absent; built by Bioconductor BBS).
 
Package: biomformat
Commit: a69d671a2ca59c96d41854a9775c171c0841229a
Author: Paul J. McMurdie <joey711@gmail.com>
Date: 2026-03-14 18:10:02 -0700
Commit message:

 Milestone 5: write_hdf5_biom() + rhdf5 -> Suggests (v1.39.9)

NEW FEATURES
- write_hdf5_biom(x, biom_file): serialises a biom object to BIOM v2 HDF5.
  Writes both the sample-major CCS and observation-major CSR sparse matrices
  required by the spec, plus all sample and observation metadata (scalar and
  vector-valued, e.g. taxonomy). A lossless round-trip through
  read_biom() -> write_hdf5_biom() -> read_biom() is verified by 7 new
  tests in tests/testthat/test-hdf5-write.R.

BUG FIXES
- Move rhdf5 from Imports to Suggests. The package and all JSON-BIOM
  functionality loads without rhdf5 installed; HDF5 read/write functions
  (read_hdf5_biom, write_hdf5_biom) stop with a clear message when the
  package is absent.
- Fix roxygen block placement: read_hdf5_biom's @export block was separated
  from its function body by the new write_hdf5_biom body, causing roxygen2
  to drop read_hdf5_biom from the NAMESPACE. Block now immediately precedes
  its function definition.

R CMD check: 0 ERRORs, 0 NOTEs, 2 pre-existing vignette WARNINGs.
 
Package: biomformat
Commit: ba2e8d9b1b2d58fbc9ff60f5d6a9791d4a045eaa
Author: Paul J. McMurdie <joey711@gmail.com>
Date: 2026-03-14 18:03:14 -0700
Commit message:

 Milestone 4: sparse-direct generate_matrix() for HDF5/BIOM-v2 (v1.39.8)

Rewrote generate_matrix() (internal, called by read_hdf5_biom()) to build
the count matrix directly as a sparse Matrix from the CCS triplets stored
in the HDF5 file, instead of first constructing a dense base::matrix via
sapply() and then wrapping rows in lapply().

Key changes:
- Coerce rhdf5::h5read() 'array' objects to plain atomic vectors with
  as.integer() / as.numeric() before passing to sparseMatrix(); the
  'array' class is not accepted by sparseMatrix()'s x= argument.
- Build j_vec from rep(seq_len(n_samp), diff(indptr)) and i_vec from
  indices + 1L, then call sparseMatrix(i, j, x, dims) directly.
- Handle the all-zero edge case (length(vals) == 0L) explicitly.
- Return value is unchanged: list of named numeric vectors, one per
  observation row, as expected by the biom() constructor.

R CMD check: 0 ERRORs, 0 NOTEs, 2 pre-existing vignette WARNINGs.
 
Package: biomformat
Commit: 8b9d0db809defec098899943198df0a3dc2e24f3
Author: Paul J. McMurdie <joey711@gmail.com>
Date: 2026-03-14 17:58:00 -0700
Commit message:

 Post-M3 cleanup: full roxygen2 7.x refresh (v1.39.7)

- Add @importFrom tags for methods::{as,is,new,setClass,setGeneric,
  setMethod,setValidity,show,validObject}, stats::setNames,
  utils::packageVersion throughout R/ sources so roxygenise() generates
  a complete NAMESPACE with no 'no visible global function' NOTEs.
- Drop hand-written @importFrom(rhdf5,h5read) - rhdf5 is Suggests and
  called via rhdf5::h5read() (fully-qualified), so no importFrom needed.
- Update R/allPackage.R: replace deprecated @docType package / NA
  sentinel with '_PACKAGE' string and @aliases biomformat.
- Add Encoding: UTF-8 and RoxygenNote: 7.3.3 to DESCRIPTION.
- Regenerate all man/*.Rd via roxygenise(); rename biom-package.Rd to
  biomformat-package.Rd per roxygen2 7.x convention.
- R CMD check: 0 ERRORs, 0 NOTEs, 2 pre-existing vignette WARNINGs
  (inst/doc absent; built by Bioconductor BBS, not locally).
 
Package: biomformat
Commit: 241bd2c38f9b0df49414b797d0280c994ee5c82f
Author: Paul J. McMurdie <joey711@gmail.com>
Date: 2026-03-14 17:30:37 -0700
Commit message:

 Merge modernise/03-tidy-interop into devel (v1.39.7)
 
Package: biomformat
Commit: f41a6f8477456bf365fcb56f6ca6c1cba2fc717c
Author: Paul J. McMurdie <joey711@gmail.com>
Date: 2026-03-14 17:30:37 -0700
Commit message:

 Milestone 3: tidy long-format interoperability (v1.39.7)

R/tidy-methods.R (new):
  - as.data.frame.biom(): long-format (feature_id, sample_id, count) tidy
    table with optional left-joined sample and observation metadata columns;
    pure base R, no tidyverse dependency
  - as_tibble.biom(): wraps as.data.frame.biom() via tibble (Suggests only)

DESCRIPTION:
  - Bump version to 1.39.7
  - Add tibble to Suggests
  - Add tidy-methods.R to Collate

NAMESPACE:
  - S3method(as.data.frame, biom)
  - export(as_tibble.biom)

man/:
  - as.data.frame.biom.Rd (new, hand-written; regenerated in M5)
  - as_tibble.biom.Rd (new, hand-written; regenerated in M5)

tests/testthat/test-tidy.R (new): 8 tests
 
Package: Seqtometry
Commit: b37b0f47bfb669df3cda8bfc59e183fbaa51d518
Author: Robert Kousnetsov <robert.kousnetsov@health.slu.edu>
Date: 2026-03-14 19:59:34 -0500
Commit message:

 Update to v0.99.2
 
Package: biomformat
Commit: 6052355ec58999e1ead21a0a0379153ea1a14d40
Author: Paul J. McMurdie <joey711@gmail.com>
Date: 2026-03-14 17:16:41 -0700
Commit message:

 Merge modernise/02-summarized-experiment into devel (v1.39.6)
 
Package: biomformat
Commit: 580345000d8a1e14eb88dbd11a580e0276295441
Author: Paul J. McMurdie <joey711@gmail.com>
Date: 2026-03-14 17:16:41 -0700
Commit message:

 Milestone 2: SummarizedExperiment interoperability (v1.39.6)

R/SE-methods.R (new):
  - biom_to_SummarizedExperiment(): converts biom object to SE, placing
    count matrix in assay('counts'), sample metadata in colData(),
    feature metadata in rowData(); NULL metadata -> empty DataFrame
  - as(biom, 'SummarizedExperiment') S4 coercion registered when SE available

man/biom_to_SummarizedExperiment.Rd (new):
  - Hand-written Rd (will be regenerated by roxygenise() in Milestone 5)

DESCRIPTION:
  - Bump version 1.39.5 -> 1.39.6
  - Add SummarizedExperiment, S4Vectors to Suggests
  - Add SE-methods.R to Collate

tests/testthat/test-SE.R (new):
  - 6 tests: class, assay values, colData, rowData, as() coercion,
    NULL metadata; all skipped gracefully without SE installed
 
Package: biomformat
Commit: 8909a2ab86e6c1f4f4c993ba9dfde5fedbc939b4
Author: Paul J. McMurdie <joey711@gmail.com>
Date: 2026-03-14 15:44:21 -0700
Commit message:

 Merge modernise/01-drop-plyr into devel (v1.39.5)
 
Package: biomformat
Commit: 0900a452048c72bca5400d5ccecd1c2a719065e4
Author: Paul J. McMurdie <joey711@gmail.com>
Date: 2026-03-14 15:43:59 -0700
Commit message:

 Milestone 1: drop plyr dependency, tighten Matrix imports (v1.39.5)

DESCRIPTION:
  - Remove plyr (>= 1.8) from Imports entirely
  - Bump R dependency to >= 4.1

R/BIOM-class.R:
  - make_biom(): replace alply() with lapply(seq_len(nrow(...)), ...)
    using obs_mat[i,] (not drop=FALSE) to preserve column names
  - make_biom(): use as.matrix(data) before t() so dispatch works for
    both base matrix and Matrix (dgeMatrix/dgCMatrix) objects
  - biom_data() dense path: replace laply() with do.call(rbind, lapply(...))
  - biom_data() sparse numeric path: replace ldply(x) with
    as.data.frame(do.call(rbind, x))
  - biom_data() sparse unicode path: replace ldply(x, function(x){...})
    with do.call(rbind, lapply(x, function(e) ...))
  - extract_metadata(): replace llply()/ldply() with lapply()/do.call()
  - parallel= argument: now no-op with deprecation warning in biom_data(),
    sample_metadata(), observation_metadata()

NAMESPACE:
  - Remove all importFrom(plyr, ...) entries
  - Replace import(Matrix) with importFrom(Matrix, Matrix, sparseMatrix, drop0)
  - Replace import(methods) with selective importFrom(methods, ...)

man/*.Rd:
  - biom_data-methods.Rd: update @param parallel (remove plyr/foreach links)
  - observation_metadata-methods.Rd: same
  - sample_metadata-methods.Rd: same

tests/testthat/test-accessors.R:
  - Add test that parallel=TRUE emits deprecation warning in biom_data(),
    sample_metadata(), observation_metadata()

R CMD check --as-cran: 0 ERRORs, 0 WARNINGs, 4 pre-existing NOTEs
 
Package: ANCOMBC
Commit: 318b1f02c651bcba6b75c2b7eb9954d44c86d36a
Author: FrederickHuangLin <huanglinfrederick@gmail.com>
Date: 2026-03-14 19:15:11 -0400
Commit message:

 Fix CVXR compatibility and add support for mia::agglomerateByRank()
 
Package: lcmsPlot
Commit: 5fac69d6f1c85fcee3a4508b1c8af396111cc932
Author: Ossama Edbali <ossedb@gmail.com>
Date: 2026-03-14 22:51:32 +0000
Commit message:

 feat: add support for xcmsRaw, XChromatogram(s), and MChromatograms (#26)

Introduce XcmsRawList, a new S4 class wrapping one or more xcmsRaw
objects, and XcmsRawReader, a MsRawReader subclass that reads scan
headers and peaks directly from in-memory xcmsRaw slots without
opening a file connection. xcmsraw_to_readers() converts an
XcmsRawList to the named-list-of-readers expected by the rest of the
pipeline.

Add get_metadata() adapters for MChromatograms and improve the
sample_id_column fallback for XCMSnExp and MsExperiment so that
sample IDs are derived from file basenames when no explicit column is
provided.

Refactor the chromatogram creator into a unified create_chromatograms()
generic that dispatches on data object type, replacing the four
previous specialised generics (create_chromatograms_from_feature_ids,
create_chromatograms_from_features, etc.). This simplifies the public
API and makes it straightforward to add further input types. 
Package: biomformat
Commit: d8231beddc723dc865f9e9678d6b5d38596538cf
Author: Paul J. McMurdie <joey711@gmail.com>
Date: 2026-03-14 15:16:13 -0700
Commit message:

 Revert "Add HANDOFF.md: modernisation roadmap and agent handoff prompt"

This reverts commit 3476b33aed131911681f582b0d80d7be599c0128.
 
Package: biomformat
Commit: 3476b33aed131911681f582b0d80d7be599c0128
Author: Paul J. McMurdie <joey711@gmail.com>
Date: 2026-03-14 15:13:53 -0700
Commit message:

 Add HANDOFF.md: modernisation roadmap and agent handoff prompt

Documents the 8-milestone modernisation plan (v1.39.5 through v1.39.12):
  M1  modernise/01-drop-plyr            - drop plyr, tighten imports
  M2  modernise/02-summarized-experiment - SE interoperability
  M3  modernise/03-tidy-interop          - as.data.frame/tibble
  M4  modernise/04-sparse-matrix-fix     - generate_matrix() sparseMatrix
  M5  modernise/05-roxygen2-refresh      - regenerate NAMESPACE/man
  M6  modernise/06-write-hdf5            - write_hdf5_biom()
  M7  modernise/07-rhdf5-suggests        - rhdf5 -> Suggests
  M8  modernise/08-vignette              - updated vignette examples

HANDOFF.md added to .Rbuildignore so it is excluded from the built tarball.
 
Package: biomformat
Commit: ff979da0bce37a551a51af60d507e6fe107a77db
Author: Paul J. McMurdie <joey711@gmail.com>
Date: 2026-03-14 14:17:51 -0700
Commit message:

 Merge criticalfixes: BBS rescue milestones 1-3 (v1.39.2-v1.39.4)

Brings in all work from the criticalfixes topic branch:
  a388c18 Resolve NEWS merge conflict: take HEAD (ca0a956) content verbatim
  ca0a956 Milestone 3: Matrix drop=FALSE + HDF5 magic-byte routing (v1.39.4)
  c069dba Milestone 3: Matrix drop=FALSE + HDF5 magic-byte routing (v1.39.4)
  a7f9876 Milestone 2: Matrix ABI + rhdf5 dependency stabilisation (v1.39.3)
  7841f44 Merge master into devel; resolve DESCRIPTION conflict (v1.39.2)
  effbd0e 1.29.2 testthat and namespace fixes

Closes https://github.com/joey711/biomformat/issues/17
Closes https://github.com/joey711/biomformat/issues/14
Supersedes https://github.com/joey711/biomformat/pull/16
Closes https://github.com/joey711/biomformat/pull/12
Supersedes https://github.com/joey711/biomformat/pull/11
Partially addresses https://github.com/joey711/biomformat/issues/5
Partially addresses https://github.com/joey711/biomformat/issues/3
 
Package: biomformat
Commit: a388c181dd608c66816098ca1e407711a62a187a
Author: Paul J. McMurdie <joey711@gmail.com>
Date: 2026-03-14 10:46:53 -0700
Commit message:

 Resolve NEWS merge conflict: take HEAD (ca0a956) content verbatim

The conflict was between:
  HEAD (ca0a956): full cross-referenced NEWS entries for v1.39.2-v1.39.4
    with GitHub issue/PR URLs (Issues #3, #5, #14, #17; PRs #11, #12, #16)
  c069dba: earlier, less detailed milestone entries without cross-references

Resolution: take HEAD in full for all three 1.39.x entries. The upstream
commit (c069dba) is an older intermediate state of the same content;
HEAD is strictly a superset with all the same facts plus issue/PR links.
 
Package: biomformat
Commit: ca0a95614bcb58991cbcad1e102152b891fba85c
Author: Paul J. McMurdie <joey711@gmail.com>
Date: 2026-03-14 10:30:52 -0700
Commit message:

 Milestone 3: Matrix drop=FALSE + HDF5 magic-byte routing (v1.39.4)

R/BIOM-class.R - biom_data() drop=FALSE fix:
  Closes  https://github.com/joey711/biomformat/pull/12
    (Fix biom_data() when dealing with 1-taxon and 1-sample BIOM data)
  Supersedes https://github.com/joey711/biomformat/pull/11
    (Fix unidentical biom output by make_biom())
  - Dense path: wrap laply() result with matrix(m, nrow, ncol) to force
    2-D shape before Matrix() coercion, eliminating dimension collapse
    when rows or columns has length 1
  - Dense path: apply Matrix() coercion for all sizes (not just >1x1)
  - Sparse path: add drop=FALSE to m[rows, columns] subsetting so a
    single-row or single-column selection retains its matrix dimensions
  - Naming block: rownames()/colnames() applied unconditionally on all
    paths (both paths now always produce a 2-D object)

NEWS:
  - Rewrote all three milestone entries (v1.39.2, v1.39.3, v1.39.4) with
    precise GitHub issue and PR cross-references:
      Issue #17 https://github.com/joey711/biomformat/issues/17
      Issue #14 https://github.com/joey711/biomformat/issues/14
      Issue  #5 https://github.com/joey711/biomformat/issues/5
      Issue  #3 https://github.com/joey711/biomformat/issues/3
      PR    #16 https://github.com/joey711/biomformat/pull/16
      PR    #12 https://github.com/joey711/biomformat/pull/12
      PR    #11 https://github.com/joey711/biomformat/pull/11

README.md:
  - Replaced stale Travis-CI badge and outdated install instructions
    with current Bioconductor release/devel badges
  - Added Quick start code block
  - Added Recent changes summary table (v1.39.2-v1.39.4) with links to
    the specific GitHub issues/PRs resolved in each version
  - Updated Support section with current mailing list and support links
  - Removed outdated references to CRAN 'biom' package

tests/testthat/test-IO.R:
  - Added regression tests covering the drop=FALSE and magic-bytes fixes

tests/testthat/test-accessors.R:
  - Updated single-row/col/cell subsetting expectations to match the
    new matrix-returning contract of biom_data()

All 158 tests pass: FAIL 0 | WARN 0 | SKIP 0 | PASS 158
R CMD check --as-cran: 0 ERRORs, 0 WARNINGs (pre-existing vignette
  build WARNINGs unaffected), 4-5 pre-existing NOTEs
 
Package: biomformat
Commit: c069dbae7dcbe862e76ee9e126022ef0e37ea0e5
Author: Paul J. McMurdie <joey711@gmail.com>
Date: 2026-03-14 10:30:52 -0700
Commit message:

 Milestone 3: Matrix drop=FALSE + HDF5 magic-byte routing (v1.39.4)

R/BIOM-class.R - biom_data() drop=FALSE fix (PR #11 / PR #12):
  - Dense path: wrap laply() result with matrix(m, nrow, ncol) to force
    2-D shape before Matrix() coercion, eliminating dimension collapse
    when rows or columns has length 1
  - Dense path: apply Matrix() coercion for all sizes (not just >1 x >1),
    making single-row/col behaviour consistent with the full-matrix case
  - Sparse path: add drop=FALSE to m[rows, columns] subsetting so a
    single-row or single-column selection retains its matrix dimensions
    instead of collapsing to a dimensionless vector
  - Naming block: remove the is.null(dim(m)) branch; both paths now
    always produce a 2-D object so rownames()/colnames() apply
    unconditionally on every code path

DESCRIPTION:
  - Bump version 1.39.3 -> 1.39.4

NEWS:
  - Prepend CHANGES IN VERSION 1.39.4 with full description of both
    the drop=FALSE fix and the HDF5 magic-byte routing confirmation

tests/testthat/test-IO.R:
  - Add regression tests: sparse single-row, single-col, single-cell,
    and full-matrix dim() retention after drop=FALSE fix
  - Add regression tests: HDF5 magic-byte routing (no jsonlite error),
    correct JSON vs HDF5 fixture classification
  - Use literal 5L/6L in dim comparisons (avoids named-integer mismatch
    from biom_shape())
  - Add hdf5_file fixture path

tests/testthat/test-accessors.R:
  - Single-value block: use as.numeric()/as.vector()[1] to compare scalar
    values without S4 vs atomic type conflict
  - Single-row block: use as.matrix() on both sides for class-agnostic
    comparison (dgeMatrix vs dgCMatrix differ only in storage, not values)
  - Single-col block: same as.matrix() treatment

All 158 tests pass: FAIL 0 | WARN 0 | SKIP 0 | PASS 158
R CMD check --as-cran: 0 ERRORs, 0 WARNINGs, 4 pre-existing NOTEs
 
Package: biomformat
Commit: a7f9876c4a8f54f0a1c57e16a1428b7ecfb8948c
Author: Paul J. McMurdie <joey711@gmail.com>
Date: 2026-03-14 10:17:34 -0700
Commit message:

 Milestone 2: Matrix ABI + rhdf5 dependency stabilisation (v1.39.3)

DESCRIPTION:
  - Bump Matrix dependency (>= 1.2) -> (>= 1.7-0) to guard against
    SuiteSparse ABI breakage in R 4.4+ BBS environments

R/IO-methods.R:
  - read_biom(): replace JSON-first/HDF5-fallback heuristic with
    deterministic magic-bytes detection (reads first 4 bytes; routes
    to HDF5 parser iff \x89HDF signature detected, eliminating the
    'lexical error' when HDF5 files hit the JSON parser)
  - read_hdf5_biom(): add requireNamespace('rhdf5', quietly=TRUE) guard
    so missing rhdf5 or absent HDF5 system libs emit a graceful R-level
    warning instead of a fatal C-level abort
  - read_hdf5_biom(): wrap h5read() in tryCatch() to catch any
    C-level/system-library errors and re-emit as R warnings
  - Use rhdf5::h5read() namespace-qualified call throughout
  - Replace non-ASCII box-drawing chars in comments with ASCII '--'

NEWS:
  - Prepend CHANGES IN VERSION 1.39.3 entry documenting all changes
 
Package: biomformat
Commit: 7841f4441e1538bec2b177476c454ff1ec4a399f
Author: Paul J. McMurdie <joey711@gmail.com>
Date: 2026-03-14 10:12:04 -0700
Commit message:

 Merge master into devel; resolve DESCRIPTION conflict (v1.39.2)

- Take Version base from devel branch (1.39.x series, Bioconductor devel)
- Bump z-component to 1.39.2 to capture Milestone 1 work from master
- Take updated Date (2026-03-14) from master branch
- Carry forward all Milestone 1 changes already staged:
    * NAMESPACE: add importFrom(stats,setNames), importFrom(utils,packageVersion)
    * NEWS: prepend CHANGES IN VERSION 1.39.2 entry
    * tests/testthat/test-IO.R: replace deprecated expect_that() with
      modern testthat 3.x equivalents (expect_true, expect_identical, etc.)
 
Package: biomformat
Commit: effbd0ec25ad83e5b3fe03b63d6962c4f9db4df4
Author: Paul J. McMurdie <joey711@gmail.com>
Date: 2026-03-14 10:08:54 -0700
Commit message:

 1.29.2 testthat and namespace fixes
 
Package: plyranges
Commit: 7872af38620ef774e65b98a481ee39a563e5e985
Author: Mike Love <mikelove@users.noreply.github.com>
Date: 2026-03-14 10:02:46 -0400
Commit message:

 version bump
 
Package: plyranges
Commit: 61cd7f8cc02b44076ad5f1c9bee664e1b4991f59
Author: Mike Love <mikelove@users.noreply.github.com>
Date: 2026-03-14 09:42:31 -0400
Commit message:

 fixing check issues
 
Package: plyranges
Commit: 180a0c55c2ee1bcd869cb9f9a891c2fb2bfcc908
Author: Mike Love <mikelove@users.noreply.github.com>
Date: 2026-03-13 14:10:46 -0400
Commit message:

 fixing function links in man page
 
Package: plyranges
Commit: 536e322fc8db1a7db60cfe86635d8ab37f1839db
Author: Michael Love <mikelove@users.noreply.github.com>
Date: 2026-03-13 14:07:40 -0400
Commit message:

 Merge pull request #122 from tidyomics/join_with_dist

Join with dist 
Package: plyranges
Commit: a3db5d7175d7e5abb3ffb2eecff3f3c8ca3ea25b
Author: Mike Love <mikelove@users.noreply.github.com>
Date: 2026-03-13 14:06:39 -0400
Commit message:

 adding distance for left overlap joins
 
Package: plyranges
Commit: c9693e4c3d65ec3636907beb7b996e04cfc1eafb
Author: Michael Love <mikelove@users.noreply.github.com>
Date: 2026-03-13 10:47:47 -0400
Commit message:

 Merge pull request #121 from tidyomics/join_mcols

Join mcols 
Package: plyranges
Commit: aa7154cdfef3e48f614b612a42ae847ab00b256d
Author: Mike Love <mikelove@users.noreply.github.com>
Date: 2026-03-11 14:55:36 -0400
Commit message:

 a workable version of mcols joins
 
Package: plyranges
Commit: 09289df2950374d3eada54712f20e9c624079634
Author: Mike Love <mikelove@users.noreply.github.com>
Date: 2026-02-24 13:48:32 -0500
Commit message:

 importing causes issues, backtracking
 
Package: plyranges
Commit: b600638ab1d77834e551ab7dab827792bc8e28dd
Author: Mike Love <mikelove@users.noreply.github.com>
Date: 2026-02-23 19:30:48 -0500
Commit message:

 import DFplyr in NAMESPACE also
 
Package: plyranges
Commit: 86da4a7835505d794161c469e406a8c4c868c723
Author: Mike Love <mikelove@users.noreply.github.com>
Date: 2026-02-19 13:04:00 -0500
Commit message:

 adding distance using ppaxisa approach
 
Package: plyranges
Commit: 5e25e7efe00f2ec1df1c4ed9f7fa114107cc38d1
Author: Mike Love <mikelove@users.noreply.github.com>
Date: 2026-02-16 15:04:19 -0500
Commit message:

 missing files
 
Package: plyranges
Commit: 1fdecc9dfacd748716c79d06c352ee6d0c766d14
Author: Mike Love <mikelove@users.noreply.github.com>
Date: 2026-02-16 14:57:33 -0500
Commit message:

 an mcols join using DFplyr
 
Package: plyranges
Commit: 76e5b0ccc5566dc254265db51ee8aefb8c03bde9
Author: Mike Love <mikelove@users.noreply.github.com>
Date: 2025-11-20 09:34:56 -0500
Commit message:

 Merge branch 'devel' of github.com:tidyomics/plyranges into devel
 
Package: plyranges
Commit: 37c2d9d44b2e1a456b7fd767bdbd703b21d704ae
Author: Mike Love <mikelove@users.noreply.github.com>
Date: 2025-11-20 09:34:52 -0500
Commit message:

 update to latest bioc for gha
 
Package: plyranges
Commit: 7114f0b1e8e908336c7e7fa2ca95a7ba7577a611
Author: Mike Love <mikelove@users.noreply.github.com>
Date: 2024-11-26 10:45:23 -0500
Commit message:

 start trying out a distance addition
 
Package: PolySTest
Commit: 0384429189266cae821f0ae75eef3f33b96777c6
Author: veitveit <veits@bmb.sdu.dk>
Date: 2026-03-14 11:43:58 +0100
Commit message:

 bioconductor version
 
Package: PolySTest
Commit: 4cf9fb07212e6650a68443f3f665d83454efd31f
Author: veitveit <veits@bmb.sdu.dk>
Date: 2026-03-14 11:37:55 +0100
Commit message:

 fallback to BH for all tests
 
Package: PolySTest
Commit: 8817a1fbeced24ab43ba12bf1e08365ad724cf39
Author: veitveit <veits@bmb.sdu.dk>
Date: 2025-11-22 16:45:22 +0100
Commit message:

 reduced upset plot for large data sts
 
Package: BiocPkgTools
Commit: 84c17b51649bb715406fdd6b9fbeb653970044db
Author: Sean Davis <seandavi@gmail.com>
Date: 2026-03-13 16:48:40 -0600
Commit message:

 Merge pull request #80 from vjcitn/devel

biocPkgList: add handling of fnd field when present in Authors@R 
Package: BiocPkgTools
Commit: 8cffb9679f3d212fce1ba7fa6d793982d60bf7d6
Author: vjcitn <stvjc@channing.harvard.edu>
Date: 2026-03-13 15:13:01 -0400
Commit message:

 fixing tests to respect [fnd] tag extraction
 
Package: BiocPkgTools
Commit: 1449eb98e04f9f7ecee587411d2c2a0533fde271
Author: vjcitn <stvjc@channing.harvard.edu>
Date: 2026-03-13 11:11:12 -0400
Commit message:

 Merge branch 'copilot/retrieve-fnd-field-value' of https://github.com/vjcitn/BiocPkgTools into copilot/retrieve-fnd-field-value
 
Package: BiocPkgTools
Commit: c68c428cf3d4ae47db71ba12ce34f9ed50314dec
Author: vjcitn <stvjc@channing.harvard.edu>
Date: 2026-03-13 11:10:09 -0400
Commit message:

 before new fnd work
 
Package: BiocPkgTools
Commit: ffb36be2e6907856e0e73003615167808406f5a1
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date: 2026-03-13 12:55:42 +0000
Commit message:

 Fix .extract_fnd() to parse formatted Author field instead of eval(parse()) on Authors@R

Co-authored-by: vjcitn <4624066+vjcitn@users.noreply.github.com>
 
Package: BiocPkgTools
Commit: 0e0e3cbcab12fac9925a3d4dc83379db99d4423f
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date: 2026-03-13 11:44:25 +0000
Commit message:

 Add fnd (funder) list-column to biocPkgList() output

Co-authored-by: vjcitn <4624066+vjcitn@users.noreply.github.com>
 
Package: BiocPkgTools
Commit: c9eb0061f6a6df2628b3555bbb931e62b41c8cc7
Author: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Date: 2026-03-13 11:37:44 +0000
Commit message:

 Initial plan
 
Package: signatureSearch
Commit: d7bfb7f5231067a24fe6d6a5af06045339d57f78
Author: brendangongol <bgong001@ucr.edu>
Date: 2026-03-12 14:33:44 -0700
Commit message:

 addressing warning messages
 
Package: leapR
Commit: 00060024ed7ca08c877d3151a35d94b0728f2aad
Author: Sara JC Gosline <sara.gosline@pnnl.gov>
Date: 2026-03-13 09:37:29 -0700
Commit message:

 added doc changes
 
Package: vsn
Commit: 42738c4e1fca9bf162612c20b3cb6a1b6d990909
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-13 16:41:52 +0100
Commit message:

 Use BiocStyle::html_document for vignette
 
Package: vsn
Commit: b228fd87c14bd2cf93b1d0fcdeddb0f2e4c19b0d
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-13 16:37:59 +0100
Commit message:

 Convert one vignette to Rmd
 
Package: atacInferCnv
Commit: 62862668ea89c04ef628346131e1eef4d56165e7
Author: Konstantin Okonechnikov <k.okonechnikov@gmail.com>
Date: 2026-03-13 16:20:18 +0100
Commit message:

 Bioconductor udpates
 
Package: atacInferCnv
Commit: 4601cb3a886fc6f48a1c9ed77af41e7112369024
Author: Konstantin Okonechnikov <k.okonechnikov@gmail.com>
Date: 2026-03-13 14:57:54 +0100
Commit message:

 Add options for infercnv object output  and improve testing
 
Package: atacInferCnv
Commit: d2083dc448f259b70bfb42de9ddf5b07547c6fbb
Author: Konstantin Okonechnikov <k.okonechnikov@gmail.com>
Date: 2026-03-13 13:27:52 +0100
Commit message:

 Add control verbose output option
 
Package: atacInferCnv
Commit: 74c5ac8884cfb8eca86943c62caf2bbebdce8276
Author: Konstantin Okonechnikov <k.okonechnikov@gmail.com>
Date: 2026-03-11 17:19:44 +0100
Commit message:

 Update documentation
 
Package: atacInferCnv
Commit: c67ede4a0fcefb7ac0423c6aaaf08201c8bf4cf1
Author: Konstantin Okonechnikov <k.okonechnikov@gmail.com>
Date: 2026-03-11 17:19:15 +0100
Commit message:

 Update documentation, minor fixes
 
Package: atacInferCnv
Commit: 2c104830d0d331bd81785acd62219b48e9b69f47
Author: Konstantin Okonechnikov <k.okonechnikov@gmail.com>
Date: 2026-03-11 14:14:16 +0100
Commit message:

 Fix issues for bioconductor: plot save to file + add to documentation,  edit DESCRIPTION
 
Package: OmicsMLRepoR
Commit: f47a350da3208f48c644a2b53fe5b872cac7ec29
Author: Sehyun Oh <shbrief@gmail.com>
Date: 2026-03-13 11:24:08 -0400
Commit message:

 version bump
 
Package: OmicsMLRepoR
Commit: 5b35684313d0098ab08d6618e96ae8467c541d4a
Author: Sehyun Oh <shbrief@gmail.com>
Date: 2026-03-13 11:13:21 -0400
Commit message:

 version bump
 
Package: OmicsMLRepoR
Commit: b0cdc4a49c70404ff7c46be4cd295d2e6d4f6a9a
Author: Sehyun Oh <shbrief@gmail.com>
Date: 2026-03-13 11:13:11 -0400
Commit message:

 update rols API endpoint
 
Package: OmicsMLRepoR
Commit: b7852e228d3414cc011cff33b26f526e5cef53a5
Author: Sehyun Oh <shbrief@gmail.com>
Date: 2026-03-04 09:15:38 -0500
Commit message:

 Fix bfcdownload() parameter name and version bump

Use 'rid' instead of 'rids' in bfcdownload() call to fix
vignette build error: "!missing(rid) is not TRUE"

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
 
Package: SQLDataFrame
Commit: 9a6235432dd7c8ad73e5e84ad97f4242ec851517
Author: lshep <lori.shepherd@roswellpark.org>
Date: 2026-03-13 10:35:24 -0400
Commit message:

 Deprecated
 unresponsive
 
Package: soGGi
Commit: 4cd483eea316b6ed258c7fa29c57caedbe11243c
Author: lshep <lori.shepherd@roswellpark.org>
Date: 2026-03-13 10:32:16 -0400
Commit message:

 Deprecated
unresponsive
 
Package: shiny.gosling
Commit: 73003bf48bc0c4919fd0877d0086d771569f5a07
Author: lshep <lori.shepherd@roswellpark.org>
Date: 2026-03-13 10:30:19 -0400
Commit message:

 Deprecation
unresponsive
 
Package: receptLoss
Commit: db9913346e7941421f683da2c58157e4c84d50d1
Author: lshep <lori.shepherd@roswellpark.org>
Date: 2026-03-13 10:28:40 -0400
Commit message:

 Deprecated
unresponsive
 
Package: normr
Commit: 94c4dd434f71b4987568eb0676b79a2092b95e8f
Author: lshep <lori.shepherd@roswellpark.org>
Date: 2026-03-13 10:25:31 -0400
Commit message:

 Deprecated
unresponsive
 
Package: nearBynding
Commit: aae0acfe6dc361b5d70af8d430e5de7380fdbaee
Author: lshep <lori.shepherd@roswellpark.org>
Date: 2026-03-13 10:24:00 -0400
Commit message:

 Deprecated
unresponsive
 
Package: broadSeq
Commit: 62139c2dd54d5abf47c7bba73ed529d9c6c63239
Author: vondorishi <rishi.dasroy@gmail.com>
Date: 2026-03-13 16:17:11 +0200
Commit message:

 version bump in devel
 
Package: broadSeq
Commit: f07ad6fcfcf8a5012d847dce203528523788106d
Author: vondorishi <rishi.dasroy@gmail.com>
Date: 2026-03-13 16:16:42 +0200
Commit message:

 bug fix: noiseq
 
Package: microSTASIS
Commit: 3e83a5853d7a6d77ff15a10b2af8cfa11e5d3884
Author: lshep <lori.shepherd@roswellpark.org>
Date: 2026-03-13 10:20:36 -0400
Commit message:

 Deprecated

 - responded on github but not ready to make changes
 
Package: mfa
Commit: 0081c250b3d5cf7a99572263990d159a4a4112bd
Author: lshep <lori.shepherd@roswellpark.org>
Date: 2026-03-13 10:19:07 -0400
Commit message:

 Deprecate
unresponsive
 
Package: hca
Commit: 0d9a910105409e946afc34747177996d3738a080
Author: lshep <lori.shepherd@roswellpark.org>
Date: 2026-03-13 10:15:02 -0400
Commit message:

 Deprecated
unresponsive
 
Package: granulator
Commit: 3196de12db57ae22aee0602691add074cd7ece1f
Author: lshep <lori.shepherd@roswellpark.org>
Date: 2026-03-13 10:11:09 -0400
Commit message:

 Deprecated
unresponsive
 
Package: debCAM
Commit: 82822845478afa32b7e8c22576b9b1d978336c9d
Author: lshep <lori.shepherd@roswellpark.org>
Date: 2026-03-13 10:04:25 -0400
Commit message:

 Deprecated
unresponsive
 
Package: cummeRbund
Commit: de9d0e0efa3cdc332742e33eb6a98dce253bd987
Author: lshep <lori.shepherd@roswellpark.org>
Date: 2026-03-13 10:02:02 -0400
Commit message:

 Deprecated
unresponsive
 
Package: ccrepe
Commit: 6507a100f77b63a9f846de826eb6af58373ee945
Author: lshep <lori.shepherd@roswellpark.org>
Date: 2026-03-13 09:58:35 -0400
Commit message:

 Deprecate
unresponsive
 
Package: beadarray
Commit: 24de7980fd25a2ca76bc34c03b1e8cb81fc7b781
Author: lshep <lori.shepherd@roswellpark.org>
Date: 2026-03-13 09:31:09 -0400
Commit message:

 Deprecated
unresponsive
 
Package: basecallQC
Commit: 5f12426b250a2e3620a94eef4f95125eb4b3fe82
Author: lshep <lori.shepherd@roswellpark.org>
Date: 2026-03-13 09:29:32 -0400
Commit message:

 Deprecate
unresponsive
 
Package: barcodetrackR
Commit: 1c0d03e0b37f30f81bfb1901cb9fab5ce766b4ec
Author: lshep <lori.shepherd@roswellpark.org>
Date: 2026-03-13 09:26:58 -0400
Commit message:

 Deprecate
unresponsive
 
Package: bamsignals
Commit: 0211dc480417394d6699dd1cf0b813bf9f75b178
Author: lshep <lori.shepherd@roswellpark.org>
Date: 2026-03-13 09:25:03 -0400
Commit message:

 Deprecated
unresponsive
 
Package: ballgown
Commit: ef351b958b9fd9309f9af46d79c966b6afe524ea
Author: lshep <lori.shepherd@roswellpark.org>
Date: 2026-03-13 09:19:57 -0400
Commit message:

 Deprecate
unresponsive
 
Package: VariantToolsData
Commit: 5b48cc76273ae0b56d9ca7723930910b2f4ca9b4
Author: lshep <lori.shepherd@roswellpark.org>
Date: 2026-03-13 09:17:10 -0400
Commit message:

 Deprecate
unresponsive
 
Package: VariantTools
Commit: 76f582c8d0c8750e8a86baf0fbfad68d33e29a12
Author: lshep <lori.shepherd@roswellpark.org>
Date: 2026-03-13 09:14:48 -0400
Commit message:

 Deprecated
unresponsive
 
Package: SigFuge
Commit: 0ef5e6a26cb8e74da3948c7521a8fbaace12b0e6
Author: lshep <lori.shepherd@roswellpark.org>
Date: 2026-03-13 09:12:47 -0400
Commit message:

 Deprecated
unresponsive
 
Package: RiboProfiling
Commit: 999158fb12d1e2400df5d80d3b493f8002f974c5
Author: lshep <lori.shepherd@roswellpark.org>
Date: 2026-03-13 09:07:45 -0400
Commit message:

 Deprecate
unresponsive
 
Package: RcisTarget
Commit: f9b234e3fe2f11dcda597aca481f0c3dc508bd06
Author: lshep <lori.shepherd@roswellpark.org>
Date: 2026-03-13 09:06:24 -0400
Commit message:

 Deprecated
unresponsive
 
Package: Organism.dplyr
Commit: f1cfcc7d529bf8c2d8d86b8ddf911099b4e7d9ac
Author: lshep <lori.shepherd@roswellpark.org>
Date: 2026-03-13 09:04:06 -0400
Commit message:

 Deprecate
unresponsive
 
Package: MineICA
Commit: ede63311ef7809ffa9c0404bd181601353134e91
Author: lshep <lori.shepherd@roswellpark.org>
Date: 2026-03-13 09:01:47 -0400
Commit message:

 Deprecated
unresponsive
 
Package: MetaNeighbor
Commit: 8b6b1525701ebe5ab3b9e6ad2b1054a6fddcd7f4
Author: lshep <lori.shepherd@roswellpark.org>
Date: 2026-03-13 08:57:08 -0400
Commit message:

 Deprecated
unresponsive
 
Package: DeconRNASeq
Commit: 70c375b80d5e8ad67df019a167892f2e30bf7354
Author: lshep <lori.shepherd@roswellpark.org>
Date: 2026-03-13 08:46:13 -0400
Commit message:

 Deprecated
 unresponsive
 
Package: ChIPQC
Commit: afb53255f74597b8097f04fbb185daa3e2ef4772
Author: lshep <lori.shepherd@roswellpark.org>
Date: 2026-03-13 08:40:19 -0400
Commit message:

 Deprecated
 unresponsive
 
Package: DELocal
Commit: 09ce130b03941b2f271ddf9d9811b512c21aa2ac
Author: vondorishi <rishi.dasroy@gmail.com>
Date: 2026-03-12 15:00:36 +0200
Commit message:

 version bump in devel
 
Package: DELocal
Commit: 204c745bdd6126559eecb2ca7272c111e9a5c660
Author: vondorishi <rishi.dasroy@gmail.com>
Date: 2026-03-12 15:00:03 +0200
Commit message:

 deactivating biomart in vignettes
 
Package: HiCool
Commit: b6b10d2e0300085f8abc8ea1988ee2c7bd853e59
Author: js2264 <jacquesserizay@gmail.com>
Date: 2026-03-13 13:35:28 +0100
Commit message:

 bump to 1.11.2
 
Package: HiCool
Commit: db923c0587641f930db9973a85587df8dbdf84a9
Author: js2264 <jacquesserizay@gmail.com>
Date: 2026-03-13 13:35:14 +0100
Commit message:

 fix: update basilisk env version
 
Package: BiRewire
Commit: 9f0669af137693510671bd38a002bd79fc51738a
Author: lshep <lori.shepherd@roswellpark.org>
Date: 2026-03-13 08:37:42 -0400
Commit message:

 Deprecated
unresponsive
 
Package: Melissa
Commit: 57567b1bff3b78ae9149fb5b8b0e1fa310142152
Author: lshep <lori.shepherd@roswellpark.org>
Date: 2026-03-13 08:36:30 -0400
Commit message:

 Deprecated

unresponsive
 
Package: BPRMeth
Commit: 1b792c233bb0f477d3d15c23737d0f3cdacbd473
Author: lshep <lori.shepherd@roswellpark.org>
Date: 2026-03-13 08:35:34 -0400
Commit message:

 Deprecate
unresponsive
 
Package: APAlyzer
Commit: 856d9e8d317c2de0114e1e35c11fd06f8205d241
Author: lshep <lori.shepherd@roswellpark.org>
Date: 2026-03-13 08:27:38 -0400
Commit message:

 Deprecated
 unresponsive
 
Package: biomaRt
Commit: 9077b09f8a0998b7ccb2f4c111a711425aabbf99
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-13 12:00:57 +0100
Commit message:

 Fix typo
 
Package: biomaRt
Commit: f9bf19c45ba92eb5a922c2145a0bf8b7c2290d43
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-13 11:59:09 +0100
Commit message:

 Add missing word
 
Package: biomaRt
Commit: 52819ee01556b8d249f2f98ecd5a313fa4373a3f
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-13 11:48:00 +0100
Commit message:

 Bump version
 
Package: biomaRt
Commit: 23eec5b5d2d8e18a9f3b0c020e6c2d739b72bd48
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-13 11:47:46 +0100
Commit message:

 Mention archive arg removal in NEWS
 
Package: biomaRt
Commit: d5185a736f734cf2846ffb2c0e40418273e000f8
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-13 11:35:34 +0100
Commit message:

 Remove all references to defunct archive arg
 
Package: biomaRt
Commit: 3c0899fe84ca1eeab76074a2c0b1ca693e2ec376
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-13 11:09:25 +0100
Commit message:

 Bump version
 
Package: biomaRt
Commit: 9a4bfae35144f5f11436cf0b7aaa5bd9b81fc814
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-13 11:09:11 +0100
Commit message:

 Add NEWS about internet unstability
 
Package: biomaRt
Commit: c38b449db3d4a697e637bdc2309bfef9da801214
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-13 10:50:25 +0100
Commit message:

 Use getCurrentEnsemblRelease() instead of .currentEnsemblVersion()
 
Package: biomaRt
Commit: ad77c28c937644445b949090b3e3640dd96ac3cb
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-13 10:43:24 +0100
Commit message:

 Avoid hitting ensembl in tests
 
Package: snpStats
Commit: c5b89745e1fa10b51c4bbcc1f81db2834b23295d
Author: vjcitn <stvjc@channing.harvard.edu>
Date: 2026-03-13 05:51:02 -0400
Commit message:

 deal with warning("", t) where there is no %d in the string.
 
Package: snpStats
Commit: 37e5b5a564674910780907e83e5d73df3281623f
Author: vjcitn <stvjc@channing.harvard.edu>
Date: 2026-03-13 04:59:34 -0400
Commit message:

 fix sprintf
 
Package: snpStats
Commit: a505297e347aa72510ecfc83e7009668693e1260
Author: vjcitn <stvjc@channing.harvard.edu>
Date: 2026-03-13 04:06:37 -0400
Commit message:

 fixed IS_S4_OBJECT
 
Package: snpStats
Commit: 803cda41994a22890e0a6e379e6588084d4bc91b
Author: vjcitn <stvjc@channing.harvard.edu>
Date: 2026-03-13 04:04:59 -0400
Commit message:

 fixed non-API except for IS_S4_OBJECT
 
Package: snpStats
Commit: a774ae7ae6f3e4a7230383c1aff63674db76e24e
Author: vjcitn <stvjc@channing.harvard.edu>
Date: 2026-03-13 03:56:20 -0400
Commit message:

 bump version
 
Package: MsCoreUtils
Commit: cef437a407c90ea71e31cada99307df5100ce7ab
Author: Johannes Rainer <5506112+jorainer@users.noreply.github.com>
Date: 2026-03-13 07:34:08 +0100
Commit message:

 Merge pull request #143 from rformassspectrometry/jomain

refactor: small fixes to documentation and code for gnps 
Package: MsCoreUtils
Commit: d4905461d2f62d349aaf84965581da1189bed876
Author: Johannes Rainer <johannes.rainer@gmail.com>
Date: 2026-03-12 16:56:39 +0100
Commit message:

 refactor: improve performance of rbindFill

- Performance improvement of `rbindFill()`: avoid costly conversion from
  `matrix` to `data.frame` and back if only matrices are joined.
 
Package: MsCoreUtils
Commit: 97982309cfcd02e29bf5de4fa92cd087a5e773fb
Author: Johannes Rainer <johannes.rainer@gmail.com>
Date: 2026-03-11 15:26:24 +0100
Commit message:

 refactor: small fixes to documentation and code for gnps

- Updates and fixes in the `gnps()` and `join_gnps()` documentation.
- Complete and expand unit tests.
 
Package: MsCoreUtils
Commit: 627ee7c03892a50c00e1fb4c7066f08ba94b0441
Author: Johannes Rainer <5506112+jorainer@users.noreply.github.com>
Date: 2026-03-11 10:39:08 +0100
Commit message:

 Merge pull request #141 from Adafede/main

`GNPS` similarities in C (with few additional things) 
Package: MsCoreUtils
Commit: 04c3ad9a1acfb23721a52cdd5cd47a7592ebde61
Author: Adriano Rutz <adriano.rutz@hotmail.com>
Date: 2026-03-11 08:50:22 +0100
Commit message:

 up
 
Package: MsCoreUtils
Commit: 525c1499db3e02d8ca3d957e33b7bda52509d22d
Author: Adriano Rutz <44283913+Adafede@users.noreply.github.com>
Date: 2026-03-11 08:21:36 +0100
Commit message:

 Update gnps.R 
Package: MsCoreUtils
Commit: b75d2ce1137bd65e5d7dbe4be938788a3cd8e3ab
Author: Adriano Rutz <adriano.rutz@hotmail.com>
Date: 2026-03-10 15:35:53 +0100
Commit message:

 up
 
Package: MsCoreUtils
Commit: e5b765578c773adf6722c7b137474efb0049a368
Author: Adriano Rutz <adriano.rutz@hotmail.com>
Date: 2026-03-10 15:29:39 +0100
Commit message:

 up
 
Package: MsCoreUtils
Commit: 1d7119b0ccf9e8092cb5ff728b73e92f48f0f1f5
Author: Adriano Rutz <44283913+Adafede@users.noreply.github.com>
Date: 2026-03-10 12:30:27 +0100
Commit message:

 fix 
Package: MsCoreUtils
Commit: caa839a723076f0e36cadda3535eb00b29f67fd6
Author: Adriano Rutz <adriano.rutz@hotmail.com>
Date: 2026-03-10 12:24:25 +0100
Commit message:

 fix test
 
Package: MsCoreUtils
Commit: 2c1650ddf7219a2619fef9b9a8556d33dd3c15c9
Author: Adriano Rutz <adriano.rutz@hotmail.com>
Date: 2026-03-10 12:23:31 +0100
Commit message:

 up
 
Package: MsCoreUtils
Commit: 64474ea70134428d229eda00d6c27d3f8dfb72e7
Author: Adriano Rutz <adriano.rutz@hotmail.com>
Date: 2026-03-10 12:11:55 +0100
Commit message:

 up
 
Package: MsCoreUtils
Commit: 4f641e9cf5bd70ef72827daf0766547cf45f01ed
Author: Adriano Rutz <adriano.rutz@hotmail.com>
Date: 2026-03-10 12:09:09 +0100
Commit message:

 up
 
Package: MsCoreUtils
Commit: 7b28c6c2eff833528765e73be6ac107f35408ddf
Author: Adriano Rutz <44283913+Adafede@users.noreply.github.com>
Date: 2026-03-10 12:04:36 +0100
Commit message:

 Merge branch 'main' into main 
Package: MsCoreUtils
Commit: 8bcc389008cd5bc7ecf417f304d0ecf602857acb
Author: Adriano Rutz <adriano.rutz@hotmail.com>
Date: 2026-03-10 11:31:39 +0100
Commit message:

 up
 
Package: MsCoreUtils
Commit: 9839c9b8ea4a05ff6cb07f764d7fa401d70ca0d8
Author: Adriano Rutz <adriano.rutz@hotmail.com>
Date: 2026-03-10 09:42:09 +0100
Commit message:

 up
 
Package: MsCoreUtils
Commit: 47dd6de6b5554ff66fe2ef60314c9635b60bc904
Author: Adriano Rutz <adriano.rutz@hotmail.com>
Date: 2026-03-10 09:30:25 +0100
Commit message:

 See https://github.com/rformassspectrometry/MsCoreUtils/pull/142#issuecomment-4029221047
 
Package: MsCoreUtils
Commit: b8cd744a7b5a0b7465426d80fece1f0a1fef3326
Author: Adriano Rutz <adriano.rutz@hotmail.com>
Date: 2026-03-09 20:32:41 +0100
Commit message:

 lint
 
Package: MsCoreUtils
Commit: 89f4140579063e73bd1d8b219ab15fe3b5d5a8b0
Author: Adriano Rutz <adriano.rutz@hotmail.com>
Date: 2026-03-09 20:28:40 +0100
Commit message:

 lint
 
Package: MsCoreUtils
Commit: b12006861945a759c875fec7c997412e33f6b3e7
Author: Adriano Rutz <adriano.rutz@hotmail.com>
Date: 2026-03-09 20:21:51 +0100
Commit message:

 up
 
Package: MsCoreUtils
Commit: 2e616ea132e96eb66b68333441ed7d2d474af03a
Author: Adriano Rutz <adriano.rutz@hotmail.com>
Date: 2026-03-09 15:05:33 +0100
Commit message:

 up
 
Package: MsCoreUtils
Commit: dd99ee71e1c76853644976a144a1cc7674fb9ae7
Author: Adriano Rutz <adriano.rutz@hotmail.com>
Date: 2026-03-09 14:41:13 +0100
Commit message:

 up
 
Package: MsCoreUtils
Commit: 842b673374b872bae83d2c5e5ce700357085b420
Author: Adriano Rutz <adriano.rutz@hotmail.com>
Date: 2026-03-09 13:50:48 +0100
Commit message:

 up
 
Package: MsCoreUtils
Commit: ae578a12e0cd08dc59ab10522222f7d207a02157
Author: Adriano Rutz <adriano.rutz@hotmail.com>
Date: 2026-03-09 13:45:52 +0100
Commit message:

 up
 
Package: MsCoreUtils
Commit: c22f9a64a527033fa615cc4cb88a43bedb2cb574
Author: Adriano Rutz <adriano.rutz@hotmail.com>
Date: 2026-03-09 13:16:48 +0100
Commit message:

 up
 
Package: MsCoreUtils
Commit: 3761288c26668a1c74208e07850b17cd4fc5cd7f
Author: Adriano Rutz <adriano.rutz@hotmail.com>
Date: 2026-03-09 13:16:33 +0100
Commit message:

 up
 
Package: SAIGEgds
Commit: 3037d843cca63e4edab018d9fd5110e9dd58f60c
Author: Xiuwen Zheng <zhengxwen@gmail.com>
Date: 2026-03-13 00:04:00 -0500
Commit message:

 span is ambiguous in C++
 
Package: smartid
Commit: 9f60653a1afad57734f9510c135b1b377d3b6897
Author: Gene233 <chen_jj97@163.com>
Date: 2026-03-13 12:00:10 +1100
Commit message:

 Version bump.
 
Package: smartid
Commit: b205e2cdbae2ed729d106932bc9e0266222f5e15
Author: Gene233 <chen_jj97@163.com>
Date: 2026-03-13 11:40:32 +1100
Commit message:

 Fix dplyr defunct.
 
Package: igblastr
Commit: aac6a26c3db42a9d8023e2ef72992cdc79318d4d
Author: Hervé Pagès <hpages.on.github@gmail.com>
Date: 2026-03-12 17:54:48 -0700
Commit message:

 Complete compute_V_gene_delineations()'s man page
 
Package: flowCore
Commit: ed9419653343ad9a77a589eb8dc84fa6647ee7ac
Author: Mike Jiang <mike@ozette.com>
Date: 2026-03-12 17:50:24 -0700
Commit message:

 fix: Add LAPACK/BLAS linker flags to Unix Makevars

flowCore failed to install on BioC nebbiolo1 builder with 'undefined
symbol: dgelsd_' because cytolib bundles Armadillo with ARMA_USE_LAPACK
but the Unix Makevars did not link against LAPACK/BLAS. The Windows
Makevars already included these flags. Add $(LAPACK_LIBS) $(BLAS_LIBS)
to PKG_LIBS in src/Makevars to match Makevars.win and Makevars.ucrt.
 
Package: HiCool
Commit: 4627d6d0500d24f9c9e135d810721763d556f7ae
Author: js2264 <jacquesserizay@gmail.com>
Date: 2026-03-13 01:25:12 +0100
Commit message:

 bump to 1.11.1
 
Package: HiCool
Commit: 88e3767cc0e60048e2256a659e057ea49bc541c8
Author: js2264 <jacquesserizay@gmail.com>
Date: 2026-03-13 01:24:56 +0100
Commit message:

 fix: getLoops example
 
Package: GenomicCoordinates
Commit: fc36cdbe38bb204b6015e6195d7fa312cab25df7
Author: js2264 <jacquesserizay@gmail.com>
Date: 2026-03-13 01:17:08 +0100
Commit message:

 bump to 0.99.1
 
Package: GenomicCoordinates
Commit: 56489352ca8994f18499884e9d4d99d7ed633d7c
Author: js2264 <jacquesserizay@gmail.com>
Date: 2026-03-13 01:03:22 +0100
Commit message:

 fix: replaced setAs with as_*
 
Package: goSorensen
Commit: b2f0b05b16d1510018ba931ff94f6b373c491c4b
Author: pablof1988 <pablojfm1988@gmail.com>
Date: 2026-03-12 18:52:33 -0500
Commit message:

 add keyType
 
Package: goSorensen
Commit: 48a818103a80e926b15e2b7c0869e1c8f6bc0c05
Author: pablof1988 <pablojfm1988@gmail.com>
Date: 2026-03-12 18:34:55 -0500
Commit message:

 Entering keyType argument
 
Package: goSorensen
Commit: 74dacb0686ac02963d9b5f9aff9428d229ac5e59
Author: pablof1988 <pablojfm1988@gmail.com>
Date: 2025-04-16 19:38:07 -0500
Commit message:

 Merge branch 'devel'

merge branch devel into master to incorporate latest updates
 
Package: goSorensen
Commit: d8e0d3d5237ef727840694a2ed61f5b3a040d75d
Author: pablof1988 <pablojfm1988@gmail.com>
Date: 2025-03-18 18:02:55 -0500
Commit message:

 v.1.9.0
 
Package: goSorensen
Commit: e8ad700e7d609f4c53207addcb4176447fd767ef
Author: pablof1988 <pablojfm1988@gmail.com>
Date: 2025-03-18 16:43:40 -0500
Commit message:

 Merge branch 'master' of https://github.com/pablof1988/goSorensen
 
Package: goSorensen
Commit: 1589bb5d18ca6a7ab32900c12053923ebfcfac7a
Author: pablof1988 <pablojfm1988@gmail.com>
Date: 2025-03-18 16:36:19 -0500
Commit message:

 1.9.0
 
Package: goSorensen
Commit: afde6a2b19b832befe20d7354aef9d7409f89c9f
Author: JordiOcana <jocana@ub.edu>
Date: 2025-03-07 14:02:36 +0100
Commit message:

 Update test_gosorensen_funcs.R

Added comment on potential speed-up due to parallelization 
Package: goSorensen
Commit: a560d0df6d6ada51fe0074973bd8f15bc526997d
Author: pablof1988 <pablojfm1988@gmail.com>
Date: 2024-12-14 15:14:09 -0500
Commit message:

 updating vignette 1.8.1
 
Package: goSorensen
Commit: 78341e8a5c400cadc7a9f5561dbd9bcceee32125
Author: pablof1988 <pablojfm1988@gmail.com>
Date: 2024-12-12 09:12:24 -0500
Commit message:

 updating allSorenThreshold v 1.8.1
 
Package: goSorensen
Commit: 5e041365900b5e9e27a4bfc875086f3b7e1691ed
Author: pablof1988 <pablojfm1988@gmail.com>
Date: 2024-12-11 18:11:16 -0500
Commit message:

 updating e-mails v1.8.1
 
Package: goSorensen
Commit: 042b154fd8a834c8ef99ef87e39fcdfc34511d8a
Author: pablof1988 <pablojfm1988@gmail.com>
Date: 2024-12-11 12:21:48 -0500
Commit message:

 updating README v1.8.1
 
Package: goSorensen
Commit: 5ef6c54fcef72428137e8e5524c88079f247ad1a
Author: pablof1988 <pablojfm1988@gmail.com>
Date: 2024-12-11 11:21:29 -0500
Commit message:

 updating documentation v1.8.1
 
Package: goSorensen
Commit: d549af8b446dbefb040b3e20e58785dacbb359c8
Author: pablof1988 <pablojfm1988@gmail.com>
Date: 2024-12-10 18:31:34 -0500
Commit message:

 Update vignette DissMatrix - 1.8.1.
 
Package: goSorensen
Commit: e4f294aa9255c96ac852df877cd06099a3d53924
Author: pablof1988 <pablojfm1988@gmail.com>
Date: 2024-12-10 17:12:12 -0500
Commit message:

 update vignette DissMatrix - 1.8.1
 
Package: goSorensen
Commit: a8ca2fc7f7e448a0be60f9e6cb5438550ae9b289
Author: pablof1988 <pablojfm1988@gmail.com>
Date: 2024-12-06 19:07:43 -0500
Commit message:

 updating outputs and vignette 1.8.1
 
Package: goSorensen
Commit: 5386946e388bcf3af1b2ee73d0e58005fc1c0122
Author: pablof1988 <pablojfm1988@gmail.com>
Date: 2024-12-02 12:38:40 -0500
Commit message:

 update v1.8.1
 
Package: goSorensen
Commit: 029e966835b7311c3c862e7e67b8cd763abc4554
Author: pablof1988 <pablojfm1988@gmail.com>
Date: 2024-11-30 15:31:08 -0500
Commit message:

 v-1.8.1.
 
Package: goSorensen
Commit: 9161df1dc3ec0821c13e6591acbd22fd134128e6
Author: pablof1988 <pablojfm1988@gmail.com>
Date: 2024-11-30 15:25:50 -0500
Commit message:

 v-1.9.1
 
Package: goSorensen
Commit: 1acbb0b7339a2325bd16b07cbf3d28faa77441c8
Author: pablof1988 <pablojfm1988@gmail.com>
Date: 2024-11-30 15:22:39 -0500
Commit message:

 v_1.8.1
 
Package: goSorensen
Commit: 99567c9d1c2090bf80e8699200ed9ea0e350f7d9
Author: pablof1988 <pablojfm1988@gmail.com>
Date: 2024-11-30 15:17:12 -0500
Commit message:

 v1.8.1
 
Package: goSorensen
Commit: b57e1b2470a93357010a4266c8bd44bc00449934
Author: pablof1988 <pablojfm1988@gmail.com>
Date: 2024-11-30 15:14:00 -0500
Commit message:

 v 1.8.1
 
Package: postNet
Commit: 68761bd3540e1b18f73c80c08e0490dc392a760b
Author: Krzysztof Szkop <krzysztof.szkop@gmail.com>
Date: 2026-03-12 21:54:15 +0000
Commit message:

 KS
 
Package: postNet
Commit: b1cdbd72b92548ec0b8e3f824efe5d004d72f2fc
Author: Krzysztof Szkop <krzysztof.szkop@gmail.com>
Date: 2026-03-12 21:31:46 +0000
Commit message:

 KS
 
Package: openCyto
Commit: 6c427362f5e43bf8779969249ce0b6c96e7eeb55
Author: Mike Jiang <mike@ozette.com>
Date: 2026-03-12 13:32:43 -0700
Commit message:

 bump version to 2.23.1
 
Package: openCyto
Commit: 5c8054a3ec2735fdf75d4ce69ca5223a052c4758
Author: Mike Jiang <mike@ozette.com>
Date: 2026-03-12 13:28:09 -0700
Commit message:

 Remove non-API ENVFLAGS/SET_ENVFLAGS usage from plugin framework (#273)

Replace namespace-unlocking approach (using internal R C-level macros
ENVFLAGS and SET_ENVFLAGS) with a dedicated environment for storing
dynamically registered plugin functions.

- Add .openCyto_plugin_functions environment in pluginFramework.R
- Add .resolve_plugin_function() helper that checks plugin env first,
  then falls back to package namespace for built-in functions
- Update .register()/.unregister() to use the new environment
- Update .gating_adaptor() and .preprocessing() to use the resolver
- Remove unlockNamespace.cpp and its cpp11 bindings

This eliminates the Bioconductor check warning about non-API entry
points while maintaining full backward compatibility for both built-in
gating methods and dynamically registered plugins.

Passes R CMD check with 0 errors, same pre-existing warnings/notes. 
Package: iClusterPlus
Commit: 4afea9829de0fe0be49271df541ffebf4d329ec1
Author: qianxing.mo <qianxing.mo@moffitt.org>
Date: 2026-03-12 16:28:28 -0400
Commit message:

 add UM.rda
 
Package: iClusterPlus
Commit: 94791a8e627acfe3a61f3e43c24a0db612199716
Author: qianxing.mo <qianxing.mo@moffitt.org>
Date: 2026-03-12 13:28:28 -0400
Commit message:

 remove data/simuResult.rda man/simuResult.Rd
 
Package: iClusterPlus
Commit: 1c14e591d662ba4aa521c64f1938bdf2162afecf
Author: qianxing.mo <qianxing.mo@moffitt.org>
Date: 2026-03-12 13:25:30 -0400
Commit message:

 major update for iClusterPlus
 
Package: h5mread
Commit: df577fa189e1437464fa09e5a8d8d746f425d06b
Author: Jeroen Ooms <jeroenooms@gmail.com>
Date: 2026-03-12 21:09:38 +0100
Commit message:

 Add backport to unbreak build on R-4.5 (#3)

See https://cran.r-project.org/doc/manuals/r-devel/R-exts.html#Some-backports 
Package: SparseArray
Commit: a7ca0a774124c6296e511f12c3bf55b253ad8309
Author: Jeroen Ooms <jeroenooms@gmail.com>
Date: 2026-03-12 21:05:03 +0100
Commit message:

 Add backport to unbreak build on R-4.5 (#24)

See https://cran.r-project.org/doc/manuals/r-devel/R-exts.html#Some-backports 
Package: ChemmineOB
Commit: 4771ee7b7aee3e9e7d7f97e96c49d1ddc3ba9911
Author: khoran <khoran@cs.ucr.edu>
Date: 2026-03-12 11:03:04 -0700
Commit message:

 remove SET_S4_OBJECT calls
 
Package: DESeq2
Commit: 15f2ec90e8707705d43c1cd66d32b7e99fd6a741
Author: Mike Love <mikelove@users.noreply.github.com>
Date: 2026-03-12 13:58:58 -0400
Commit message:

 dont use threshold in looking at LFC sign, fixes #127
 
Package: igblastr
Commit: 3b78cad23658ecb30ef49e9f3106cd45ff58ddda
Author: Hervé Pagès <hpages.on.github@gmail.com>
Date: 2026-03-12 10:48:02 -0700
Commit message:

 fix unit tests
 
Package: ChemmineR
Commit: aea8b487ec71ca346155cc3d514f357f5905f48b
Author: khoran <khoran@cs.ucr.edu>
Date: 2026-03-12 10:30:58 -0700
Commit message:

 remove SET_S4_OBJECT calls
 
Package: iClusterPlus
Commit: 2c43d6a0268463be5c7e45b7bb450409db841a92
Author: qianxing.mo <qianxing.mo@moffitt.org>
Date: 2026-03-12 13:14:38 -0400
Commit message:

 Fix DESCRIPTION conflict
 
Package: iClusterPlus
Commit: dc5bc4e10d43da0694d9c700840ff0eda4604c7b
Author: qianxing.mo <qianxing.mo@moffitt.org>
Date: 2026-03-12 11:10:39 -0400
Commit message:

 update R/iClusterBayes.R
 
Package: iClusterPlus
Commit: 1ae7f302e6e43724db1073c69586dc0bfa2120f0
Author: qianxing.mo <qianxing.mo@moffitt.org>
Date: 2026-03-12 10:42:06 -0400
Commit message:

 update DESCRIPTION NAMESPACE
 
Package: casper
Commit: ac71ee6b306d8c06267006cb84ca400ee4f38908
Author: davidrusi <50999756+davidrusi@users.noreply.github.com>
Date: 2026-03-12 18:09:07 +0100
Commit message:

 reverted c changes from last commit
 
Package: fRagmentomics
Commit: 1d88720fbb6fbfee2b646b1eef06933e9914f796
Author: KillianMau <maudet.killian.loq@gmail.com>
Date: 2026-03-12 12:31:51 +0100
Commit message:

 Address Bioconductor review: use readVcf() for VCF import, return S4Vectors::DataFrame, replace magrittr with native pipe, replace incremental rbind with lapply/do.call, and fix vignette (startup messages, print, table vs count, dataset description)
 
Package: fRagmentomics
Commit: 5db8f3407568b48e0d00717fa079edb8e7c2f152
Author: KillianMau <maudet.killian.loq@gmail.com>
Date: 2026-02-25 23:26:37 +0100
Commit message:

 Modify figures of the README
 
Package: EpiDISH
Commit: 816f01d78464e4f9d5dace5bf4467d6ea7edc3b6
Author: GuoXiaolong <2472227329@qq.com>
Date: 2026-03-13 00:11:42 +0800
Commit message:

 Bump version to 2.27.2 and add genefilter
 
Package: Rhdf5lib
Commit: 0cbd187f3fef50093f0b5c0385b1d235212e4169
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-12 17:27:02 +0100
Commit message:

 Bump version
 
Package: Rhdf5lib
Commit: de7a88a469c00637cf20af90957518b50b2cca3a
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-12 16:02:31 +0100
Commit message:

 Test adding secur32 library when LinkingTo from windows
 
Package: Rhdf5lib
Commit: afb138a0c24f51cc9a5ccbf56259504247b89a00
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-12 16:19:20 +0100
Commit message:

 Delete auto-comment GHA workflow 
Package: Rhdf5lib
Commit: b051054d68ad90a41e670404ac9d477597e503ef
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-12 16:07:26 +0100
Commit message:

 Trigger R-universe workflow manually only
 
Package: Rhdf5lib
Commit: 467b2aa67c18057c7a77a95e1018d74a9e551f95
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-12 16:04:00 +0100
Commit message:

 Add r-universe GHA workflow
 
Package: biomaRt
Commit: 303163f2bcec77c6ae47380018d03f62fe8c8280
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-12 14:34:54 +0100
Commit message:

 Bump version
 
Package: biomaRt
Commit: 59d0a2dd201937ee40db87cb5c55207ab8bda280
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-12 14:34:43 +0100
Commit message:

 Mention user agent in NEWS
 
Package: biomaRt
Commit: 852be768917bb27b5b5fdfda0c4e5c6c0ae1be60
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-12 14:33:34 +0100
Commit message:

 Add user agent to all requests send by biomaRt
 
Package: biomaRt
Commit: 0e5201f90397e59c66e8c1201822ccbe87708970
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-12 15:41:04 +0100
Commit message:

 Install tidyverse for lintr workflow

Required for lifecycle_linter()
 
Package: Hiiragi2013
Commit: 3d9836ce8efa3b5060c47dd87f2b1165f3c78c99
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-12 14:48:37 +0100
Commit message:

 Bump version
 
Package: Hiiragi2013
Commit: 1fe5a102d2445b8f680b98e903cd908a732fad10
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-12 16:28:49 +0100
Commit message:

 Use AuthorsR
 
Package: Hiiragi2013
Commit: 45d04a6aeb40729325003276e1354752887bcf88
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-12 16:27:58 +0100
Commit message:

 Mention Depends and NAMESPACE changes in DESCRIPTION
 
Package: Hiiragi2013
Commit: 3f7fc8dbdf5d1ad5f895784d1394116127c024ee
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-12 16:27:31 +0100
Commit message:

 Fix example
 
Package: Hiiragi2013
Commit: f271677dba5d099fd8737de2134d3dbcd9ce9b50
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-12 16:20:12 +0100
Commit message:

 Clean up NAMESPACE and move packages to Suggests
 
Package: Hiiragi2013
Commit: c49554acfe3c6aa9354c1827bcaf13dbb8064a5a
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-12 15:58:06 +0100
Commit message:

 Fix long lines in Rd
 
Package: Hiiragi2013
Commit: 1f9794409c24d30bc70d68c5046753353e475622
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-12 15:50:48 +0100
Commit message:

 Move packages from Depends to Imports
 
Package: Hiiragi2013
Commit: fd52a703101b8bd881ddb58595ebb678277636b1
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-12 14:48:31 +0100
Commit message:

 Add note about data("a") removal in NEWS
 
Package: Hiiragi2013
Commit: 672ae202502e95381e85cb2a4d95f01dd54cb062
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-12 14:53:57 +0100
Commit message:

 Remove references to a in docs
 
Package: Hiiragi2013
Commit: 7cf542ee63b893a264230a55b2e6b64db0cfd03c
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-12 14:43:08 +0100
Commit message:

 Add more details about why "a" is not included and how to get it
 
Package: Hiiragi2013
Commit: 0cb68e79e3352f99ff868d07aa9609b961816910
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-03 16:13:58 +0100
Commit message:

 Make vignette section using "a" static
 
Package: Hiiragi2013
Commit: 9c7742d8867ad032388e4f9274f240ce36849c61
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-02 14:06:44 +0100
Commit message:

 Remove un-normalized data

- All examples in MSMB and all external uses rely on normalized data ("x")
- Files larger than 100 MB cause issues for integration in r-universe
 
Package: matter
Commit: ab718487bbb6c35bc71e5fde93eb941ae833129c
Author: Kylie Bemis <k.bemis@northeastern.edu>
Date: 2026-03-12 10:48:46 -0400
Commit message:

 v2.13.3 backport DATAPTR support for older R versions
 
Package: matter
Commit: 0324d6108a9ba3c7fa487dc9f536f873b1844ac4
Author: Kylie Bemis <k.bemis@northeastern.edu>
Date: 2026-03-12 10:41:34 -0400
Commit message:

 Merge pull request #45 from jeroen/devel

Add backport to unbreak build on R-4.5 
Package: matter
Commit: fd45c028084312759ea399734f4f1c5cf4075e01
Author: Jeroen Ooms <jeroenooms@gmail.com>
Date: 2026-03-12 13:52:13 +0100
Commit message:

 Add backport to unbreak build on R-4.5
See https://cran.r-project.org/doc/manuals/r-devel/R-exts.html#Some-backports
 
Package: rhdf5
Commit: 193642d3fd5ee8e406fb5d7901066593ca9744db
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-12 13:54:06 +0100
Commit message:

 Bump version
 
Package: rhdf5
Commit: c8881d699b4ddb75ca353b019b92e4c583914ca6
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-12 13:53:15 +0100
Commit message:

 Document HDF5 version update
 
Package: rhdf5
Commit: 9bfca00c325bb307945ad819c0925a76b4672cde
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-12 13:52:15 +0100
Commit message:

 Remove use of Remotes
 
Package: rhdf5
Commit: b3253cd22cd60977d024e694d79e3d77e6cbe21a
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-02-17 12:17:21 +0100
Commit message:

 Remove H5Pget_version() entirely
 
Package: rhdf5
Commit: da9d3b3f6841ec2ba314dcab7ff16c4f9106bca2
Author: LTLA <infinite.monkeys.with.keyboards@gmail.com>
Date: 2025-12-08 21:44:56 +1100
Commit message:

 Minor fixes for libver bounds to get tests to pass.
 
Package: rhdf5
Commit: fbf2a2900d94db6fac145e38a654d8af45f0d861
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-02-16 14:38:51 +0100
Commit message:

 Remove obsolete reference to version
 
Package: rhdf5
Commit: 539aa8a5153d09cd4de6a5cbf22a01897dd76e6b
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-02-16 14:32:37 +0100
Commit message:

 Do not use private header to handle file locking

Co-authored-by: LTLA <infinite.monkeys.with.keyboards@gmail.com>
 
Package: rhdf5
Commit: 57791513b4c3dbfb804897d914b3b139a91c220a
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-02-16 14:29:15 +0100
Commit message:

 Remove H5I_REFERENCE

Release notes say:

>     - Remove H5I_REFERENCE from the library
>
>      This ID class was never used by the library and has been removed.

https://github.com/HDFGroup/hdf5/blob/9b290ab389b9b560c32e751d0c92f2687a731b8e/release_docs/HISTORY-1_10_0-1_12_0.txt#L252C1-L254C72
 
Package: rhdf5
Commit: 225eb776bf711ed7b20ade5f3902410b8f76a00a
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-02-16 14:06:55 +0100
Commit message:

 Test with corresponding PR in Rhdf5lib
 
Package: rhdf5
Commit: bf8990ee49239d585eca403b48faca6a2137ebc7
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-02-15 20:23:57 +0100
Commit message:

 Update to HDF5 1.14
 
Package: rhdf5
Commit: 29bb2970ec8142084270b36dc07567387f69f14d
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-02-15 19:29:20 +0100
Commit message:

 Update to HDF5 1.12

Move to API with token type
 
Package: cosmosR
Commit: 7f1e6ae16c766c7f494ab2b998ae99ebf22862df
Author: Aurelien Dugourd <dugourd@ebi.ac.uk>
Date: 2026-03-12 14:09:52 +0000
Commit message:

 fix: remove piano from Suggests (not used in any code)

piano is only mentioned in vignette prose but never imported or called.
Its unavailability on the macOS arm64 builder causes CHECK to fail.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
 
Package: cosmosR
Commit: 51143b987b1493581e9dea7032efa6319aa00de2
Author: Aurelien Dugourd <dugourd@ebi.ac.uk>
Date: 2026-03-12 14:07:19 +0000
Commit message:

 fix: correct image path mismatches in MOFA_to_COSMOS vignette

Fix 4 broken image references in MOFA_to_COSMOS.md (hyphen/underscore
mismatches) and update resource_files in Rmd to point to the actual
M2Cf directory instead of non-existent MOFA_to_COSMOS_files.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
 
Package: postNet
Commit: 062c8ad7e693c18f9d665156d0e6a6f327b15176
Author: Krzysztof Szkop <krzysztof.szkop@gmail.com>
Date: 2026-03-12 13:28:23 +0000
Commit message:

 KS
 
Package: msPurity
Commit: d893bfbf3df9b4b8250b3c466e9661c36a9fae70
Author: Thomas N Lawson <thomas.nigel.lawson@gmail.com>
Date: 2026-03-12 11:22:31 +0000
Commit message:

 v1.37.3 (patch2) - only tests updated - Add safer way to download library spectra for checking purposes (#112) 
Package: Rhdf5lib
Commit: db0cadf32f8c13b88e214e78159f2facd4a10984
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-12 12:30:07 +0100
Commit message:

 Bump version
 
Package: Rhdf5lib
Commit: 6d52831a637884460b1c7ab041b0a80fc3824244
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-12 12:31:21 +0100
Commit message:

 Mention HDF5 version upgrade in NEWS
 
Package: Rhdf5lib
Commit: 899fb90246f53e0dda4155e3a9ae9064488e5f4d
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-12 11:09:37 +0100
Commit message:

 Test marking libaec build as static
 
Package: Rhdf5lib
Commit: 2fffb2809e2d54e5c9e0a8bfad4561f6a5d0d54c
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-10 16:39:40 +0100
Commit message:

 Update version number in tests
 
Package: Rhdf5lib
Commit: ddd024c90a2f8e8caa25311cab29d563b4bc1999
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-06 14:33:08 +0100
Commit message:

 Vendor HDF5 1.14.6
 
Package: Rhdf5lib
Commit: c12750cc0ae7aaa294849fd74625aedfb0d4f32e
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-06 14:32:49 +0100
Commit message:

 Update download script with HDF5 1.14.6
 
Package: Rhdf5lib
Commit: c6264f24e4daba08d325a2f5422eb28d08fabe4a
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-12 09:45:26 +0100
Commit message:

 Add CRAN machines GHA
 
Package: postNet
Commit: bf218124ce7b510dd937ce9f1035bd61082c75e7
Author: Krzysztof Szkop <krzysztof.szkop@gmail.com>
Date: 2026-03-12 12:13:29 +0000
Commit message:

 KS
 
Package: markeR
Commit: 3356098abea266fbe221ca9ae6c491580a29f030
Author: Rita Silva <ritamtbsilva@gmail.com>
Date: 2026-03-12 12:02:29 +0000
Commit message:

 bump version to 1.1.2
 
Package: markeR
Commit: 11c0fce0af1bb8ad82d38051c5b96e0361099612
Author: Rita Silva <ritamtbsilva@gmail.com>
Date: 2026-03-12 11:15:45 +0000
Commit message:

 clean up and fix build after python scripts added
 
Package: markeR
Commit: d4cc8f5a6aba0d29af7672203039ae5141cfd00c
Author: Rita Silva <ritamtbsilva@gmail.com>
Date: 2026-03-12 10:48:56 +0000
Commit message:

 clean up python scripts
 
Package: markeR
Commit: 66ba8b5274ed9f7a1c9ecb9a16a212d22c886b5a
Author: Rita Silva <ritamtbsilva@gmail.com>
Date: 2026-03-12 10:20:07 +0000
Commit message:

 move python scripts to main folder
 
Package: rhdf5
Commit: b8ed1d7c91b473b50f56d83335242b4ea5db982d
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-11 13:26:58 +0100
Commit message:

 Use memcpy() instead of loop to copy string buffer
 
Package: rhdf5
Commit: 4f7a45443450a0eeb49a337602d2890f8d5f0c0f
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-11 11:07:28 +0100
Commit message:

 Remove unused variable initialization
 
Package: postNet
Commit: e630a050b5d6ea30a3d44e3a6c8492a8accd720e
Author: Krzysztof Szkop <krzysztof.szkop@gmail.com>
Date: 2026-03-12 10:43:36 +0000
Commit message:

 KS
 
Package: PRONE
Commit: 21d27fa7ca5321c6f33163d3490f70dbb2970078
Author: lisiarend <lisiarend@me.com>
Date: 2026-03-12 09:17:45 +0100
Commit message:

 merged with devel bioconductor
 
Package: PRONE
Commit: 2cc6368833e5cc8833c61b537812b524c504667f
Author: lisiarend <lisiarend@me.com>
Date: 2026-03-12 09:15:06 +0100
Commit message:

 version bump
 
Package: PRONE
Commit: b63074cb505fb111c9236470990053cd509f1ece
Author: lisiarend <lisiarend@me.com>
Date: 2026-03-12 09:07:35 +0100
Commit message:

 merge with release_3_22 bioconductor
 
Package: PRONE
Commit: 524efdafc1572b3d059cf02d8d8d6e06cf3ed7be
Author: lisiarend <lisiarend@me.com>
Date: 2026-03-12 09:01:56 +0100
Commit message:

 version bump
 
Package: PRONE
Commit: 8d0a51367dd020a7964023c9514fe64eaccc7668
Author: Arend Lis <55484713+lisiarend@users.noreply.github.com>
Date: 2026-03-12 08:58:51 +0100
Commit message:

 Merge pull request #12 from daisybio/main

Merge pull request #11 from daisybio/RELEASE_3_22 
Package: PRONE
Commit: 4cb766caeb22e372288b7696af266032962e5854
Author: Arend Lis <55484713+lisiarend@users.noreply.github.com>
Date: 2026-03-12 08:57:40 +0100
Commit message:

 Merge pull request #11 from daisybio/RELEASE_3_22

Release 3 22 
Package: PRONE
Commit: 8bb6306d14c7637ba60a8c9281d299b38e387cde
Author: lisiarend <lisiarend@me.com>
Date: 2026-03-12 08:56:36 +0100
Commit message:

 summarise_each of dplyr removed
 
Package: igblastr
Commit: 3b64e3811fa026563771b5dda97a0157977ad15a
Author: Hervé Pagès <hpages.on.github@gmail.com>
Date: 2026-03-11 18:43:25 -0700
Commit message:

 igblastr 1.1.23

Rename the following functions:
  compute_imgt_intdata -> compute_V_gene_delineations
  read_V_ndm_data -> read_ndm_data
  write_V_ndm_data -> write_ndm_data
  check_V_ndm_data -> validate_ndm_rows
 
Package: ExpoRiskR
Commit: 7152b0def815211f34423eeaca9a842a6ee6877f
Author: ppchaudhary <luckypgi@gmail.com>
Date: 2026-03-11 20:51:21 -0400
Commit message:

 Fix NEWS parsing and bump version to 0.99.4
 
Package: ExpoRiskR
Commit: f0457e6dcd5fb7cc16e5b3c5493b8d4fc85c01f8
Author: ppchaudhary <luckypgi@gmail.com>
Date: 2026-03-11 20:36:10 -0400
Commit message:

 Bump version to 0.99.3 for Bioconductor rebuild
 
Package: ExpoRiskR
Commit: 122094794484d93775b9ecd7937b641862aae53d
Author: ppchaudhary <luckypgi@gmail.com>
Date: 2026-03-02 00:21:08 -0500
Commit message:

 Add tests and finalize vignette/README for Bioconductor review
 
Package: postNet
Commit: 5b391a2dfbf47b9a61dd597dce344d067621c524
Author: Krzysztof Szkop <krzysztof.szkop@gmail.com>
Date: 2026-03-12 00:33:01 +0000
Commit message:

 KS
 
Package: hpAnnot
Commit: 6129fc8bee017a4eaf17652941003e043e2a1c39
Author: Marta Hidalgo <marta.hidalgo@outlook.es>
Date: 2026-03-12 01:25:30 +0100
Commit message:

 bumping to version 1.1.2
 
Package: hpAnnot
Commit: 1c540c75749369895b04550d6e826e6ae5081f58
Author: Marta Hidalgo <marta.hidalgo@outlook.es>
Date: 2026-03-12 01:24:06 +0100
Commit message:

 adding v3 files
 
Package: hpAnnot
Commit: 572b5fc385651de7b3ab8c3f1548c14b40b96916
Author: Marta Hidalgo <marta.hidalgo@outlook.es>
Date: 2026-03-12 01:09:33 +0100
Commit message:

 changing DESCRIPTION and make-metadata.R files
 
Package: OSTA
Commit: 51af4cbd498adcc52b81b9675a82b8c2510e54ca
Author: Lukas Weber <8062417+lmweber@users.noreply.github.com>
Date: 2026-03-11 19:48:25 -0400
Commit message:

 version and date
 
Package: OSTA
Commit: 8558f61062c3df60b794722d05a24c0ba17b98a5
Author: Lukas Weber <8062417+lmweber@users.noreply.github.com>
Date: 2026-03-11 13:48:55 -0400
Commit message:

 update max cores for Harmony
 
Package: Rarr
Commit: d9f9b5a3df36e1842ab6c062d4d4e93b26e16d9a
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-11 23:55:46 +0100
Commit message:

 Bump version
 
Package: Rarr
Commit: 04bc1910fa1b2ed374ff983d4fe2f20db73211e0
Author: Jeroen Ooms <jeroenooms@gmail.com>
Date: 2026-03-11 22:03:19 +0100
Commit message:

 Fix build on R < 4.6
 
Package: postNet
Commit: 05c2ca4baf15c1d2adb541200ea574edcc0e6f5e
Author: Krzysztof Szkop <krzysztof.szkop@gmail.com>
Date: 2026-03-11 21:45:16 +0000
Commit message:

 KS
 
Package: tidyexposomics
Commit: 4ac49a596ebc6c60bbb0ccca6be44270851c18b3
Author: BioNomad <jlaird1@binghamton.edu>
Date: 2026-03-11 17:20:56 -0400
Commit message:

 association function fix
 
Package: VERSO
Commit: abde52586fd06b13ac821ee96b2bc1110afdc8c9
Author: DavideMaspero <d.maspero@campus.unimib.it>
Date: 2026-03-11 21:58:24 +0100
Commit message:

 Update DESCRIPTION
 
Package: LACE
Commit: 1ce1000e46bb9e84f42a0fbd118f24601e0e35bd
Author: DavideMaspero <d.maspero@campus.unimib.it>
Date: 2026-03-11 21:56:58 +0100
Commit message:

 Update DESCRIPTION
 
Package: lncRna
Commit: cc94632896c5dd1a518bbf2d224b3e45168dd227
Author: Dragon96pl <36973370+Dragon96pl@users.noreply.github.com>
Date: 2026-03-11 20:49:43 +0100
Commit message:

 Fix

Co-Authored-By: prodakt <bioinformatyka@gmail.com>
 
Package: lncRna
Commit: 594baa2b4a5ec4387595a4e2e12adbb0dd5bcb7a
Author: Dragon96pl <36973370+Dragon96pl@users.noreply.github.com>
Date: 2026-03-11 20:44:26 +0100
Commit message:

 Fix

Co-Authored-By: prodakt <bioinformatyka@gmail.com>
 
Package: lncRna
Commit: 6feee83245d4f102928a6696ea1deb97a5d2b64a
Author: Dragon96pl <36973370+Dragon96pl@users.noreply.github.com>
Date: 2026-03-11 20:41:59 +0100
Commit message:

 Fix error

Co-Authored-By: prodakt <bioinformatyka@gmail.com>
 
Package: lncRna
Commit: 5063a4e111e7147f58df088e010291293e722563
Author: Damian Czopek <36973370+Dragon96pl@users.noreply.github.com>
Date: 2026-03-11 15:47:45 +0100
Commit message:

 DESCRIPTION update 
Package: lncRna
Commit: c23609b5a8244a78a199f17b9c84880c43c8679f
Author: Damian Czopek <36973370+Dragon96pl@users.noreply.github.com>
Date: 2026-03-11 15:41:57 +0100
Commit message:

 Update README.md 
Package: lncRna
Commit: be3a5074195d0a5ef7e87b8a984a9dda1db90885
Author: Dragon96pl <36973370+Dragon96pl@users.noreply.github.com>
Date: 2026-03-11 15:39:18 +0100
Commit message:

 Update utils.R

Co-Authored-By: prodakt <bioinformatyka@gmail.com>
 
Package: lncRna
Commit: dc4ac32762bcecee3a8d27fe6a9ad2a370ca7955
Author: Dragon96pl <36973370+Dragon96pl@users.noreply.github.com>
Date: 2026-03-11 15:30:16 +0100
Commit message:

 Bioconductor 0.99.3 review changes

* Implemented comprehensive unit tests reaching >80% package coverage.

* Optimized confusion matrix calculations and performance evaluation pipeline.

* Added accessibility-friendly color palettes (Okabe-Ito) for all visualization functions.

* Merged recent feature updates and refactors into the main branch via Pull Request.

Co-Authored-By: prodakt <bioinformatyka@gmail.com>
 
Package: lncRna
Commit: 6ba0501f5371b10722cca0b97a2bf2328ad9b6d0
Author: Damian Czopek <36973370+Dragon96pl@users.noreply.github.com>
Date: 2026-03-11 12:27:19 +0100
Commit message:

 Merge pull request #1 from Bisaloo/bioc-review

Small fixes related to Bioconductor review 
Package: lncRna
Commit: ae80435b44884ead0f3ffa0f6bac33b157c7035c
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-05 16:02:16 +0100
Commit message:

 Simplify col_to_filter construction
 
Package: lncRna
Commit: 0c91baf82254fbf8761cf64efc7949ad6c5e608e
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-05 16:01:57 +0100
Commit message:

 Mark regex as fixed for better performance
 
Package: lncRna
Commit: 54d8772a4d2aeccc64995d70c47142a1f3a8d463
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-05 16:01:39 +0100
Commit message:

 Use dedicated lengths() function instead of vapply()
 
Package: lncRna
Commit: 9705080a152887560af3fa27fd1bf7e32401c502
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-05 16:01:17 +0100
Commit message:

 Rely on arguments defaults in match.arg()
 
Package: lncRna
Commit: a8325b36a0f6729d8bbee76b11996207d2079f85
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-05 14:19:10 +0100
Commit message:

 Add package man page
 
Package: lncRna
Commit: a1101b4ca9e7d79d93e5ca247181d7c7c4b6b836
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-02-18 17:36:09 +0100
Commit message:

 Fix NEWS.md section format
 
Package: lncRna
Commit: f1c4e426476c70702b411c9edb01769b55d3856f
Author: Damian Czopek <36973370+Dragon96pl@users.noreply.github.com>
Date: 2026-02-05 13:16:32 +0100
Commit message:

 Fix image links in README for venn diagrams

Updated image links in README to point to the correct directory. 
Package: lncRna
Commit: 7b2d7d3eef739633f7f1ba76b353f9386e616137
Author: Damian Czopek <36973370+Dragon96pl@users.noreply.github.com>
Date: 2026-02-05 13:09:06 +0100
Commit message:

 Update logo image path in README.md 
Package: matter
Commit: c2629bdf45d7752629bd9079cdc59be4e27e4ed6
Author: Kylie A. Bemis <k.bemis@northeastern.edu>
Date: 2026-03-11 16:02:31 -0400
Commit message:

 v2.13.2 remove DATAPTR() usage
 
Package: matter
Commit: d1ba794e628c2dfc621dd0a4b9e38c4a51e8d657
Author: Kylie A. Bemis <k.bemis@northeastern.edu>
Date: 2026-02-18 14:34:26 -0500
Commit message:

 v2.13.1 add args to chunk_mapply() and chunked_list()
 
Package: matter
Commit: f3d5051d2ab5b329c3cc66deeaafcb61a122c043
Author: Kylie A. Bemis <k.bemis@northeastern.edu>
Date: 2026-02-18 14:30:43 -0500
Commit message:

 add xlist to chunked_list and XS to chunk_mapply
 
Package: postNet
Commit: a0c28db217ae82592124abe0308e3aef4b857741
Author: Krzysztof Szkop <krzysztof.szkop@gmail.com>
Date: 2026-03-11 19:06:17 +0000
Commit message:

 KS
 
Package: postNet
Commit: 4babab615d4e0d3cfe89c807b631d082170b6bab
Author: Krzysztof Szkop <krzysztof.szkop@gmail.com>
Date: 2026-03-11 19:04:26 +0000
Commit message:

 KS
 
Package: ROC
Commit: 993d4a1a2dce084f51058308d62683aba74ac1ff
Author: Vince Carey <stvjc@channing.harvard.edu>
Date: 2026-03-11 14:26:12 -0400
Commit message:

 Bump version to 1.87.2 and add URLs

Updated version number and added repository URLs. 
Package: MSstatsBioNet
Commit: a5e9c4d41741e4457d878474ae2c64ebe653a947
Author: tonywu1999 <wu.anthon@northeastern.edu>
Date: 2026-03-11 14:23:19 -0400
Commit message:

 Bump version from 1.3.4 to 1.3.5 
Package: MSstatsBioNet
Commit: 8123bd77d3053b807580a9d824d5f2a3dedf74e2
Author: tonywu1999 <wu.anthon@northeastern.edu>
Date: 2026-03-11 14:22:48 -0400
Commit message:

 feature(filter-subnetwork): Add feature to filter the subnetwork from INDRA by query context (#84) 
Package: Voyager
Commit: 417ad22ff407d1f359c7d4f8d365d2e9100fe4dc
Author: Lambda Moses <dlu2@caltech.edu>
Date: 2026-03-11 14:22:44 -0400
Commit message:

 Remember that biscale is suggested not imported
 
Package: MSstatsShiny
Commit: d3fab9518912ea81d36ef517a7fa60ac191b3f1b
Author: tonywu1999 <anthonywu92@gmail.com>
Date: 2026-03-11 14:12:01 -0400
Commit message:

 Update package version to 1.13.3

Bump version from 1.13.2 to 1.13.3 
Package: MSstatsShiny
Commit: f955d16c64c72aa771d3f324aae1363b4d09343a
Author: tonywu1999 <anthonywu92@gmail.com>
Date: 2026-03-11 11:36:39 -0400
Commit message:

 feat(advanced-options): Set up advanced options panel for subnetwork search (#178) 
Package: MSstatsShiny
Commit: e3b9fa2ffd71ad0e85322c2a1d0567b400016424
Author: tonywu1999 <anthonywu92@gmail.com>
Date: 2026-03-11 11:36:20 -0400
Commit message:

 docs(ptm): Fix documentation regarding MSstatsPTM groupComparisonPTM (#177) 
Package: MSstatsShiny
Commit: 491b4db0831d57a17ede756042a723f41332d0e0
Author: Swaraj Patil <patil.swaraj@northeastern.edu>
Date: 2026-03-09 10:10:39 -0400
Commit message:

 feat(response-curves): download dose response curve plots (#174) 
Package: MSstatsShiny
Commit: 520b3e4cfef6cefa303479cd48141ef88d2eb270
Author: tonywu1999 <anthonywu92@gmail.com>
Date: 2026-03-05 14:22:16 -0500
Commit message:

 feature(network-visualization): Add button to export HTML from Shiny (#176)

 
Package: goatea
Commit: b757c3aa130c61eb6342d00cb90b2bc2654ba1a2
Author: Maurits Unkel <mauritsunkel@gmail.com>
Date: 2026-03-11 19:00:04 +0100
Commit message:

 resolve merge conflict, bump version
 
Package: goatea
Commit: b0e2d0b8e70a2205ce6d19260119568bfe447222
Author: Maurits Unkel <mauritsunkel@gmail.com>
Date: 2026-03-11 18:57:32 +0100
Commit message:

 Merge branch 'main' of https://github.com/mauritsunkel/goatea
 
Package: goatea
Commit: 591c7f6412a1e7fa8b9bb8050e2a5c41cb2a44ee
Author: Maurits Unkel <mauritsunkel@gmail.com>
Date: 2026-03-11 18:57:10 +0100
Commit message:

 Updated DOSE::setReadable to clusterProfiler::setReadable as Bioc 3.23 DOSE does not export setReadable anymore
 
Package: goatea
Commit: abe80ca0ad767bc6c3f1e3a4c13519545b0d3fa9
Author: GitHub Actions <actions@github.com>
Date: 2026-03-09 14:58:57 +0000
Commit message:

 Update Bioconductor download stats
 
Package: goatea
Commit: 4091ad99a35f6d243bc0c9952ee68ce7f612ee3f
Author: Maurits Unkel <mauritsunkel@gmail.com>
Date: 2026-03-09 15:52:45 +0100
Commit message:

 Updated badge colors
 
Package: goatea
Commit: 333410e727501087f87d84c9e79d0c5ec513edbe
Author: Maurits Unkel <mauritsunkel@gmail.com>
Date: 2026-03-09 15:48:19 +0100
Commit message:

 Merge branch 'main' of https://github.com/mauritsunkel/goatea
 
Package: goatea
Commit: 9357b0f3833bc6694285d4fdfe40c3df8095c6ab
Author: Maurits Unkel <mauritsunkel@gmail.com>
Date: 2026-03-09 15:48:08 +0100
Commit message:

 Updated workflows
 
Package: goatea
Commit: 7d6caea43e91b72d87e52f3e6617284c30eb9ea1
Author: Mauws <47570265+mauritsunkel@users.noreply.github.com>
Date: 2026-03-09 15:45:37 +0100
Commit message:

 Fix badge link formatting in README.md 
Package: goatea
Commit: 1b92899d7a912e0851c3333878a0d9edb576b6ed
Author: GitHub Actions <actions@github.com>
Date: 2026-03-09 13:26:27 +0000
Commit message:

 Update Bioconductor download stats
 
Package: goatea
Commit: ad5f42c478de14145dd11e5ad3c8cc49d3b38583
Author: Maurits Unkel <mauritsunkel@gmail.com>
Date: 2026-03-09 14:20:46 +0100
Commit message:

 Fixing downloads badge
 
Package: goatea
Commit: d8253c6d8a378d8b0a47746d3fc95606affd1b19
Author: Maurits Unkel <mauritsunkel@gmail.com>
Date: 2026-03-09 14:10:06 +0100
Commit message:

 Added data.table to DESCRIPTION, updated badge gh action workflow
 
Package: goatea
Commit: 3fb745767274baa5a12b32af17da054440de55f4
Author: Maurits Unkel <mauritsunkel@gmail.com>
Date: 2026-03-09 13:54:13 +0100
Commit message:

 Fixed example data, package imports, termtree example, updated vignettes
 
Package: goatea
Commit: 91cd6d4776186975ee4d712168b6bb9fd55054f4
Author: Maurits Unkel <mauritsunkel@gmail.com>
Date: 2026-03-09 13:18:20 +0100
Commit message:

 Updated and fixed vignettes for pkgdown docs, fixed GitHub Actions workflows
 
Package: goatea
Commit: 0cbce5012b9ad396301443c9c354d66ef0813d65
Author: Maurits Unkel <mauritsunkel@gmail.com>
Date: 2026-03-09 09:48:27 +0100
Commit message:

 Fixed bugs in plotting termtree and updated its docs, upgraded reading and validating genelists with automated .csv separator reading, minor fixes and code clarity updates
 
Package: goatea
Commit: 4a2509b6589403c8ed3e0c53a22775b9d8d4b3d8
Author: Maurits Unkel <mauritsunkel@gmail.com>
Date: 2026-03-09 09:46:55 +0100
Commit message:

 Added Docker files, accessible example data, pkgdown docs with new vignette and GitHub Action workflows
 
Package: goatea
Commit: f506568bfc8d999bdc7a2bd92a279f3cb8275081
Author: Maurits Unkel <mauritsunkel@gmail.com>
Date: 2026-03-09 09:39:29 +0100
Commit message:

 Updates for Bioc devel 3.23
 
Package: postNet
Commit: 5475a69533240f459981e3d04196212b7bab9ff6
Author: Krzysztof Szkop <krzysztof.szkop@gmail.com>
Date: 2026-03-11 17:37:26 +0000
Commit message:

 KS
 
Package: markeR
Commit: 6baef37eadcb8ecaea5e8caa83b8122db27da822
Author: Rita Silva <ritamtbsilva@gmail.com>
Date: 2026-03-11 17:15:15 +0000
Commit message:

 Update README.md
 
Package: markeR
Commit: c9f63e5f40ab3ec079d08c662f99a73b28f8c703
Author: Rita Silva <ritamtbsilva@gmail.com>
Date: 2026-03-11 17:09:43 +0000
Commit message:

 new version 1.1.1
 
Package: markeR
Commit: f33d137414bc6cf48485778200a6e03fb2a8cc1d
Author: Rita Silva <ritamtbsilva@gmail.com>
Date: 2026-03-11 16:45:14 +0000
Commit message:

 new parameter p.adjust.method
 
Package: markeR
Commit: a9025cf42b33e7f1cd67b65084451b5eb3aa9fed
Author: Rita Silva <ritamtbsilva@gmail.com>
Date: 2026-03-11 13:08:30 +0000
Commit message:

 add python
 
Package: markeR
Commit: 525b29dcfd3d79d46ebdb78202d1e9b48b1f50c8
Author: Rita Silva <ritamtbsilva@gmail.com>
Date: 2025-10-31 09:53:17 +0000
Commit message:

 update version in readme file
 
Package: ROC
Commit: 8daa67f9adbead65274d280305f602cdfed746fb
Author: vjcitn <stvjc@channing.harvard.edu>
Date: 2026-03-11 13:13:57 -0400
Commit message:

 changing version
 
Package: igblastr
Commit: addeb4c67ed70a7e7e71a0d4310ea9ce0dd2369a
Author: Hervé Pagès <hpages.on.github@gmail.com>
Date: 2026-03-11 09:14:50 -0700
Commit message:

 Display OGRDB citation information

Display OGRDB citation information when selecting OGRDB germline db
and in man pages for download_OGRDB_germline_sequences() and
download_OGRDB_germline_json().
 
Package: msPurity
Commit: 29955da4968d5ba2c0d761c098de96a1cd10cad5
Author: Thomas N Lawson <thomas.nigel.lawson@gmail.com>
Date: 2026-03-11 14:22:32 +0000
Commit message:

 1.37.3 (patch) - Update tests for createDatabase for CI/CD 
Package: msPurity
Commit: 0a05477435b52d565a1391714c735567417c3ee2
Author: Thomas N Lawson <thomas.nigel.lawson@gmail.com>
Date: 2026-03-10 13:09:24 +0000
Commit message:

 v1.37.3 - update for tests only - library database path for library vs library spectral matching test updated (#110)

* Update library database path for lvl spectral matching test

* Bump version from 1.37.2 to 1.37.3

* Update readme

* Change package date in DESCRIPTION file

Updated the package date from 2025-02-19 to 2025-03-10.

* Update NEWS with clarification on database path change 
Package: msPurity
Commit: 808690c8da9531466fc3d32d5b8509cfe60f1be9
Author: Ossama Edbali <ossedb@gmail.com>
Date: 2026-02-26 14:40:55 +0000
Commit message:

 v1.37.2 - fix subsetting of grouped data frame (#109)

* Fix subsetting of grouped data frame

The `grpid` column in `pa@grped_df` is an integer factor.
The comparison `pa@grped_df$grpid==as.numeric(grp_idx)` fails when `grp_idx`
is 100000 because `as.numeric` returns type `double`.

`pa@grped_df$grpid == 100000` returns `FALSE` for all items even if 100000 is present.
`pa@grped_df$grpid == 100000L` returns `TRUE` for items that are 100000.

* v1.31.1 - updates following removal of library spectra from msPurityData package (too large for Bioconductor) (#108)

* Use zenodo reference to library spectra

* Update CI/CD

* troubleshoot vignette build issue

* Troubleshooting cache on github workflows

* Troubleshooting cache for github workflows

* more troubleshooting GH workflow cache

* Bump version and add entry to NEWS

* Fix email of contributor

---------

Co-authored-by: Thomas N Lawson <thomas.nigel.lawson@gmail.com> 
Package: MSstatsBioNet
Commit: f02d61de14e9a884e1107e680fad5c7d5c083a17
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date: 2026-03-11 11:25:17 -0400
Commit message:

 docs: Weekly AI README upgrade — Contributing & Development Setup (#83) 
Package: MSstatsBioNet
Commit: 734969f21a36e5887b1d2c04bb25a733da06c0dd
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date: 2026-03-11 11:15:02 -0400
Commit message:

 docs: Weekly AI doc upgrade for `previewNetworkInBrowser` (#82) 
Package: MSstatsBioNet
Commit: 2d6546d7099ef72b38bad648f41c4ec615091a38
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date: 2026-03-11 11:12:45 -0400
Commit message:

 docs: Weekly AI doc upgrade for `renderCytoscapeNetwork` (#74) 
Package: postNet
Commit: de681a53e65f223cab9cd1e7c8b0d28327aff0dd
Author: Krzysztof Szkop <krzysztof.szkop@gmail.com>
Date: 2026-03-11 13:01:01 +0000
Commit message:

 KS
 
Package: scRNAseqApp
Commit: dfe1dae5f21084380222a6e8beecd7460159e3e4
Author: Jianhong Ou <jianhong.ou@gmail.com>
Date: 2026-03-11 08:50:34 -0400
Commit message:

 Add 'download' button for webstats.
 
Package: hpAnnot
Commit: 9bcb785f74a13b6f8c49c3a8ea049671407a9c36
Author: Marta Hidalgo <marta.hidalgo@outlook.es>
Date: 2026-03-11 13:16:01 +0100
Commit message:

 changing version to v3 in upload_files_to_S3
 
Package: postNet
Commit: c94e854942cf2dc7ff30f74d0a31723b39ff5146
Author: Krzysztof Szkop <krzysztof.szkop@gmail.com>
Date: 2026-03-11 11:40:53 +0000
Commit message:

 KS
 
Package: Spectra
Commit: 4f4022e71073d9f7df85af8bf4722df0147843d1
Author: Johannes Rainer <5506112+jorainer@users.noreply.github.com>
Date: 2026-03-11 11:54:07 +0100
Commit message:

 Merge pull request #380 from rformassspectrometry/jomain

refactor: improve matched peak reporting by compareSpectra 
Package: Spectra
Commit: 1d2ab5a459ff3f1cef90c0f39b6097b484f49dbe
Author: Johannes Rainer <johannes.rainer@gmail.com>
Date: 2026-03-11 08:21:12 +0100
Commit message:

 refactor: improve matched peak reporting by compareSpectra

- `compareSpectra()` now relies on the similarity function to report the number
  of matched peaks on which the similarity score was calculated (instead of
  calculating it based on the results of `MAPFUN`). This has the advantage that
  correct matched peak counts are reported by e.g. the modified
  cosine (`gnps()`) similarity calculation. Issue #350.
 
Package: PhyloProfile
Commit: d8059e2479736f587ec6ec1a64f9bbe977b80484
Author: trvinh <trvinh@gmail.com>
Date: 2026-03-11 11:35:33 +0100
Commit message:

 append taxa from newTaxa.txt to currentNCBIinfo
 
Package: CalibraCurve
Commit: 5fe36d75ac0cb1e78bffe12740c96ad1e96ac5a2
Author: Karin Schork <schorkka@mpc-domain.local>
Date: 2026-03-11 10:20:54 +0100
Commit message:

 increase version number
 
Package: CalibraCurve
Commit: cd54c7bd8bfa71d6373ddeaf31a3dc8fde90e293
Author: KarinSchork <karin.schork@rub.de>
Date: 2026-03-09 13:04:53 +0100
Commit message:

 fix build warnings
 
Package: imageTCGAutils
Commit: e0335d8fbc1e60bb91c23156109f1a9e55d25b20
Author: billila <ilaria.billato@studenti.unipd.it>
Date: 2026-03-11 10:12:40 +0100
Commit message:

 version bump 0.99.18
 
Package: rhdf5
Commit: bed579a22401f496ddae82f51f8295c2b6874fbf
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-10 11:31:28 +0100
Commit message:

 Use scalar instead of vector of length 1
 
Package: rhdf5
Commit: 849f31a3b4b2709caa13306665aead6f42a6c963
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-10 10:45:09 +0100
Commit message:

 Use R_NamesSymbol to get names attribute
 
Package: wavFeatExt
Commit: 5d908c669fc116df77a7afd7c8dbce3a02432f99
Author: Maharani Ahsani Ummi <maharaniahsani@itb.ac.id>
Date: 2026-03-11 14:34:09 +0700
Commit message:

 Rebuild after server issue
 
Package: CSOA
Commit: 0485b36f906759ed8e5ccd731101ed37d7ab210f
Author: andrei-stoica26 <andreistoica@foxmail.com>
Date: 2026-03-11 15:07:51 +0800
Commit message:

 Bumped version number
 
Package: CSOA
Commit: a5fdceea417473f367c09310b688cbbcc484dacc
Author: andrei-stoica26 <andreistoica@foxmail.com>
Date: 2026-03-11 15:07:19 +0800
Commit message:

 Removed extra file
 
Package: wavFeatExt
Commit: 438a89e5f72eba765d84cb842b6e69e9a6ae37bf
Author: Maharani Ahsani Ummi <maharaniahsani@itb.ac.id>
Date: 2026-03-11 13:50:27 +0700
Commit message:

 Fix Error"
 
Package: CSOA
Commit: 4d07170fc2910a7f7a5713a19af1d3b1ebc23e76
Author: andrei-stoica26 <andreistoica@foxmail.com>
Date: 2026-03-11 14:39:30 +0800
Commit message:

 Bumped version
 
Package: CSOA
Commit: 6a4766e5de2cf1c99e5384b072c8e4af092bc70b
Author: andrei-stoica26 <andreistoica@foxmail.com>
Date: 2026-03-11 14:38:47 +0800
Commit message:

 Replaced .qs with .qs2
 
Package: igblastr
Commit: 196798dede2b93ece923eb01a659b4f5f7168ab4
Author: Hervé Pagès <hpages.on.github@gmail.com>
Date: 2026-03-10 23:27:48 -0700
Commit message:

 igblastr 1.1.22: Add download_OGRDB_germline_json()
 
Package: wavFeatExt
Commit: 9eb991492e8eb020170acfa8c581aa46ef19b76b
Author: Maharani Ahsani Ummi <maharaniahsani@itb.ac.id>
Date: 2026-03-11 13:16:10 +0700
Commit message:

 Fix Error"
 
Package: wavFeatExt
Commit: 85963ce681bced4098191355cea7bd45fe8794dc
Author: Maharani Ahsani Ummi <maharaniahsani@itb.ac.id>
Date: 2026-03-11 12:48:37 +0700
Commit message:

 Fix time out
 
Package: wavFeatExt
Commit: bc26d6f4ce056dedbbfff6042f329c56c4e3a13d
Author: Maharani Ahsani Ummi <maharaniahsani@itb.ac.id>
Date: 2026-03-11 12:40:55 +0700
Commit message:

 Remove Rproj file from repository
 
Package: wavFeatExt
Commit: e814a4a9303dfdea00b3e525cb85fea6a2c22ed5
Author: Maharani Ahsani Ummi <maharaniahsani@itb.ac.id>
Date: 2026-03-11 10:40:44 +0700
Commit message:

 Fix CBS error causing vignette build failure
 
Package: wavFeatExt
Commit: a12afa43306189fa17e1ec01d600015629542cae
Author: Maharani Ahsani Ummi <maharaniahsani@itb.ac.id>
Date: 2026-03-11 10:31:11 +0700
Commit message:

 Fix BiocCheck issues
 
Package: wavFeatExt
Commit: 32847d681e7143bade8cb9cc4e21b409ed07a7f0
Author: Maharani Ahsani Ummi <maharaniahsani@itb.ac.id>
Date: 2026-03-11 09:51:10 +0700
Commit message:

 Fix CBS error causing vignette build failure
 
Package: wavFeatExt
Commit: 36b364f5678553cf7e7baaf2993a666fe19d4311
Author: Maharani Ahsani Ummi <maharaniahsani@itb.ac.id>
Date: 2026-03-11 09:50:09 +0700
Commit message:

 Fix CBS error causing vignette build failure
 
Package: wavFeatExt
Commit: 81fb6418f58e8b4709c04714af332d7338e6bb28
Author: Maharani Ahsani Ummi <maharaniahsani@itb.ac.id>
Date: 2026-03-11 09:46:31 +0700
Commit message:

 Fix CBS error causing vignette build failure
 
Package: wavFeatExt
Commit: 532f9314da964691d13b8dfe9cca7973e9f8c4a2
Author: Maharani Ahsani Ummi <maharaniahsani@itb.ac.id>
Date: 2026-03-11 09:36:39 +0700
Commit message:

 Fix BiocCheck issues
 
Package: wavFeatExt
Commit: 1fce02ba6d5a0d50edd0165d3881826b9e5fc838
Author: Maharani Ahsani Ummi <maharaniahsani@itb.ac.id>
Date: 2026-03-10 15:49:11 +0700
Commit message:

 Fix BiocCheck errors and vignette
 
Package: wavFeatExt
Commit: 6a7ecf04da0452440698e863fd212a424c74be85
Author: Maharani Ahsani Ummi <maharaniahsani@itb.ac.id>
Date: 2026-03-10 15:06:19 +0700
Commit message:

 Revision 3
 
Package: wavFeatExt
Commit: f6df713f78874849a0e720530f94e77de291b7c0
Author: Maharani Ahsani Ummi <maharaniahsani@itb.ac.id>
Date: 2026-03-07 11:45:11 +0700
Commit message:

 Remove Rproj file from repository
 
Package: signatureSearch
Commit: 34f134f3e034487d019a91310459fbbeb65c4ab1
Author: brendangongol <brengong@gmail.com>
Date: 2026-03-10 19:27:27 -0700
Commit message:

 Merge branch 'devel' of https://github.com/girke-lab/signatureSearch into devel
 
Package: signatureSearch
Commit: e38fd16b988357ae5fc9509ae1d55bb11cea98e7
Author: brendangongol <brengong@gmail.com>
Date: 2026-03-10 19:26:22 -0700
Commit message:

 Addressing warning message
 
Package: OSTA
Commit: 6178784f982c9179989981aad0496e2130582722
Author: Lukas Weber <8062417+lmweber@users.noreply.github.com>
Date: 2026-03-10 18:32:50 -0400
Commit message:

 max cores for GHA
 
Package: OSTA
Commit: 09dbb4b2cada0e52e67ef42d8b9460b03ea418d9
Author: Lukas Weber <8062417+lmweber@users.noreply.github.com>
Date: 2026-03-10 16:40:04 -0400
Commit message:

 version and date
 
Package: OSTA
Commit: 6f7f9415d9e0d61dc3044439f86d238751d06404
Author: HelenaLC <helena@crowell.eu>
Date: 2026-03-10 20:56:40 +0100
Commit message:

 hide Python-related messages/warnings
 
Package: OSTA
Commit: 869cdf6a0f15f4972874ccfb0ca25b043c287937
Author: HelenaLC <helena@crowell.eu>
Date: 2026-03-10 20:50:27 +0100
Commit message:

 add BPPARAM flags; fix normalization
 
Package: SeqArray
Commit: c8e23317879b2e6a667a898a79bf90cc42c6edc3
Author: Xiuwen Zheng <zhengxwen@gmail.com>
Date: 2026-03-10 19:22:21 -0500
Commit message:

 Reduce memory usage in seqParallel
 
Package: leapR
Commit: 96e17547a870155000e8170ecf065c1c61b89ce3
Author: Sara JC Gosline <sara.gosline@pnnl.gov>
Date: 2026-03-10 15:30:09 -0700
Commit message:

 removed docs from this branch, then updated
 
Package: leapR
Commit: cf251ca76940ff93207e55096d7853fccea99433
Author: Sara JC Gosline <sara.gosline@pnnl.gov>
Date: 2026-02-11 10:45:32 -0800
Commit message:

 add pkgdown
 
Package: leapR
Commit: a0cc189c1312b3a7e1f3ae4596b137e9a3768374
Author: Sara JC Gosline <sara.gosline@pnnl.gov>
Date: 2026-02-11 09:43:59 -0800
Commit message:

 test for gh pages
 
Package: leapR
Commit: 9886616e51d38541847032e0853ac1528c864c63
Author: Sara JC Gosline <sara.gosline@pnnl.gov>
Date: 2026-02-06 14:22:42 -0800
Commit message:

 Merge pull request #65 from pnnl/round2-bioc-updates

Round2 bioc updates 
Package: leapR
Commit: 6c5908ddf5dd6390eaf0310ed8ed7d70ec3f35ad
Author: Sara JC Gosline <sara.gosline@pnnl.gov>
Date: 2026-02-06 13:58:41 -0800
Commit message:

 added depenency
 
Package: leapR
Commit: d898b9fb475215eaaa63a4e354cf97bbacae208b
Author: Sara JC Gosline <sara.gosline@pnnl.gov>
Date: 2026-02-06 13:27:39 -0800
Commit message:

 Updated with new vignette and z test
 
Package: leapR
Commit: 7e2f95c39dc9a4efd9024673dc09b272411edacb
Author: Sara JC Gosline <sara.gosline@pnnl.gov>
Date: 2026-02-05 15:32:28 -0800
Commit message:

 additional statistics added to leapR

These still require debug/testing here.
 
Package: leapR
Commit: 79c59df3449b9e700fdc518de50ce790ca29f21c
Author: Sara JC Gosline <sara.gosline@pnnl.gov>
Date: 2026-01-25 12:00:06 -0800
Commit message:

 Merge pull request #63 from pnnl/feat/forge-catalog

add catalog-info.yaml file for forge catalog 
Package: leapR
Commit: 63eaeb24f0869349c31eb7605a79a69728318ac3
Author: pham259 <jennifer.pham@pnnl.gov>
Date: 2026-01-23 13:48:15 -0800
Commit message:

 add catalog-info.yaml file for forge catalog 
Package: leapR
Commit: dfca7ddd48607a0ca925f9788884754a109d8e8a
Author: Sara JC Gosline <sara.gosline@pnnl.gov>
Date: 2025-12-02 11:47:56 -0800
Commit message:

 Merge pull request #60 from jjacobson95/data_visualization_update

looks great! will merge, and then close the other two PR s :) 
Package: leapR
Commit: 6160c281415b7dcb32750b84499e7213091f6e24
Author: Jeremy <jeremy.jacobson3402@gmail.com>
Date: 2025-11-28 13:04:25 -0800
Commit message:

 Incremented the version. Added plotting throughout the vignette. Clarified a couple things in the vignette. Added a data inspection chunk
 
Package: leapR
Commit: 3e8f09f78d7cd98f6f108056723f5eb5d608ee0b
Author: Jeremy <jeremy.jacobson3402@gmail.com>
Date: 2025-11-28 13:04:01 -0800
Commit message:

 Incremented the version. Added plotting throughout the vignette. Clarified a couple things in the vignette. Added a data inspection chunk
 
Package: leapR
Commit: 32bdccb8cfb0b7df9e288f0f4fb83b941401ca19
Author: Jeremy Jacobson <85139244+jjacobson95@users.noreply.github.com>
Date: 2025-11-10 12:52:29 -0800
Commit message:

 small vignette modification 
Package: leapR
Commit: 5722f73998de7d86f115f5e65ad38286a35f6d9c
Author: Jeremy <jeremy.jacobson3402@gmail.com>
Date: 2025-11-10 11:15:48 -0800
Commit message:

 Added barplot function. Addtions to code, test, vignette, and autogenerated roxygen2 files
 
Package: leapR
Commit: 9fd00ceb5ed633af5668c20a43195af88508a93f
Author: Jeremy <jeremy.jacobson3402@gmail.com>
Date: 2025-11-10 10:44:13 -0800
Commit message:

 Added barplot function. Addtions to code, test, vignette, and autogenerated roxygen2 files
 
Package: spammR
Commit: afdee1247f790d069c79c300ce60a9913592bb01
Author: Sara JC Gosline <sara.gosline@pnnl.gov>
Date: 2026-03-10 15:11:23 -0700
Commit message:

 Merge branch 'bioc-resub' of https://github.com/PNNL-CompBio/spammR into bioc-resub
 
Package: spammR
Commit: 9b7b3c25606700e47600c13910c632a67d5cdc66
Author: Sara JC Gosline <sara.gosline@pnnl.gov>
Date: 2026-03-10 14:45:59 -0700
Commit message:

 added package level documentation
 
Package: spammR
Commit: 03679afa1cc7d7ebfdaefb02ac03efd30b1f2f12
Author: Sara JC Gosline <sara.gosline@pnnl.gov>
Date: 2026-03-10 14:34:45 -0700
Commit message:

 added changes required for bioC submission
 
Package: spammR
Commit: 2d3ece9172493d475204887d0270b639cec3b5b1
Author: Yannick Mahlich <yannick.mahlich@pnnl.gov>
Date: 2026-02-16 12:40:33 -0800
Commit message:

 fix to SampMin imputation

Imputation value writing was handled row by row in the proteomics data, which was incompatible with how Sample Minimum imputation data is calculated. Fixed imputed value assignment method for SampMin to fix that problem.
 
Package: spammR
Commit: 07662dd0d21d70dc2992863ebac5178ac25816af
Author: Sara JC Gosline <sara.gosline@pnnl.gov>
Date: 2026-02-16 15:22:03 -0800
Commit message:

 added more to vignette
 
Package: spammR
Commit: f313808e27dbac648bf3cf398c162f630a939d2c
Author: Sara JC Gosline <sara.gosline@pnnl.gov>
Date: 2026-02-07 20:07:30 -0800
Commit message:

 updated documentation
 
Package: spammR
Commit: cd86d324d69ab2d522d5133572e28e3102c41e5d
Author: Sara JC Gosline <sara.gosline@pnnl.gov>
Date: 2026-02-06 13:33:51 -0800
Commit message:

 updated gradient test with z test
 
Package: spammR
Commit: c69c6f80fcecf18d3391beb8f98bfe2d6399bd1d
Author: Sara JC Gosline <sara.gosline@pnnl.gov>
Date: 2026-02-05 08:13:03 -0800
Commit message:

 Added new readme and github actions to build
 
Package: spammR
Commit: 28bb706dfbf0885099f02099a1c0c3e9a1b22a87
Author: Yannick Mahlich <yannick.mahlich@pnnl.gov>
Date: 2026-02-03 11:40:41 -0800
Commit message:

 fixed typos & changed KO differential expression and Pathway enrichment analysis after fixes to calc_spatial_diff_ex.R
 
Package: spammR
Commit: 260769ca509601a707368ef6d42d2a7717fce601
Author: Yannick Mahlich <yannick.mahlich@pnnl.gov>
Date: 2026-02-02 14:38:11 -0800
Commit message:

 added additional check to log transformation of data to ensure that log transformation only happens for non count based data
 
Package: spammR
Commit: e3ff78979ab303cced90fcba8bd503a675d91d88
Author: Yannick Mahlich <yannick.mahlich@pnnl.gov>
Date: 2026-01-29 10:36:29 -0800
Commit message:

 added `sort.by = "none"` to `limma::topTable()` call in `calc_spatial_diff_ex.R` such differential expression results and SPE gene list are in the same order for merging. Also clarified comment in code explaining why we don't sort.
 
Package: spammR
Commit: 8a38d0f7279d472cfa853c6dd9099f10dbc7c7db
Author: pham259 <jennifer.pham@pnnl.gov>
Date: 2026-01-26 12:13:09 -0800
Commit message:

 add catalog-info.yaml file for forge catalog 
Package: spammR
Commit: e41d1bc04021542a95da62c7a7fb7a4ff6de3845
Author: Yannick Mahlich <yannick.mahlich@pnnl.gov>
Date: 2026-01-22 14:15:17 -0800
Commit message:

 renamed imputation method from 'sampMin' to 'samp_min' to align with style guide and updated function doc string
 
Package: spammR
Commit: 5f9dfc119883b6d43ccc50ac04cb173ac248081d
Author: Yannick Mahlich <yannick.mahlich@pnnl.gov>
Date: 2026-01-19 10:45:48 -0800
Commit message:

 add sampMin (sampleMinimum) to imputation methods
 
Package: spammR
Commit: 541217e0f37256d8c5710b2d5405af39c7492b00
Author: Sara JC Gosline <sara.gosline@pnnl.gov>
Date: 2026-03-10 14:45:59 -0700
Commit message:

 added package level documentation
 
Package: spammR
Commit: 0ed97d973e84c589bf360e927d67642329fe8e94
Author: Sara JC Gosline <sara.gosline@pnnl.gov>
Date: 2026-03-10 14:34:45 -0700
Commit message:

 added changes required for bioC submission
 
Package: spammR
Commit: 4a34a4ccf9793d7754de0690cee7b00a145d3148
Author: Sara JC Gosline <sara.gosline@pnnl.gov>
Date: 2026-02-16 15:22:06 -0800
Commit message:

 Merge branch 'main' of https://github.com/PNNL-CompBio/spammR
 
Package: spammR
Commit: 4579c61b5015fc0df98becea4c82ee0689c51b8f
Author: Sara JC Gosline <sara.gosline@pnnl.gov>
Date: 2026-02-16 15:22:03 -0800
Commit message:

 added more to vignette
 
Package: spammR
Commit: 1b57682638568ffd35c4b92187706cfd0d18d8a5
Author: Sara JC Gosline <sara.gosline@pnnl.gov>
Date: 2026-02-16 12:49:56 -0800
Commit message:

 Merge pull request #83 from PNNL-CompBio/sample_min_fix

fix to SampMin imputation 
Package: spammR
Commit: d0e6df38e540cdf15ef05e0f6f397a74ce3a1e3a
Author: Yannick Mahlich <yannick.mahlich@pnnl.gov>
Date: 2026-02-16 12:40:33 -0800
Commit message:

 fix to SampMin imputation

Imputation value writing was handled row by row in the proteomics data, which was incompatible with how Sample Minimum imputation data is calculated. Fixed imputed value assignment method for SampMin to fix that problem.
 
Package: spammR
Commit: 337815e378c48a7503ddd177d993e326f1c6af6c
Author: Sara JC Gosline <sara.gosline@pnnl.gov>
Date: 2026-02-07 20:07:30 -0800
Commit message:

 updated documentation
 
Package: spammR
Commit: fb66c4520d5ea799952bfd5a43a8688837debbc7
Author: Sara JC Gosline <sara.gosline@pnnl.gov>
Date: 2026-02-06 13:33:51 -0800
Commit message:

 updated gradient test with z test
 
Package: spammR
Commit: a4a29ca50c52b822df061a1c1b93175671c6ed91
Author: Sara JC Gosline <sara.gosline@pnnl.gov>
Date: 2026-02-05 08:13:03 -0800
Commit message:

 Added new readme and github actions to build
 
Package: spammR
Commit: 8502eacdae7a0667c1138bc5ef4cca7a81a7d22f
Author: Sara JC Gosline <sara.gosline@pnnl.gov>
Date: 2026-02-03 12:10:55 -0800
Commit message:

 Merge pull request #81 from PNNL-CompBio/spatMicrobiome_fixes

spatMicrobiome fixes 
Package: spammR
Commit: c57f420c2757d8aeb655b85d69358e4862541fe7
Author: Yannick Mahlich <yannick.mahlich@pnnl.gov>
Date: 2026-02-03 11:40:41 -0800
Commit message:

 fixed typos & changed KO differential expression and Pathway enrichment analysis after fixes to calc_spatial_diff_ex.R
 
Package: spammR
Commit: 1fe0a475ff96154a9c15a3edc702bc8cce3ca4bd
Author: Sara JC Gosline <sara.gosline@pnnl.gov>
Date: 2026-02-03 11:27:11 -0800
Commit message:

 Merge pull request #80 from PNNL-CompBio/79-count-based-differential-expression-get-log-transformed

fix to disable log transformation if dealing with count based data in differential expression. 

Nice catch! 
Package: spammR
Commit: 11c316f63fdaf50711d87e4a4b622063869f0a32
Author: Yannick Mahlich <yannick.mahlich@pnnl.gov>
Date: 2026-02-02 14:38:11 -0800
Commit message:

 added additional check to log transformation of data to ensure that log transformation only happens for non count based data
 
Package: spammR
Commit: 697d8da2bb8ae46886968194bc262b0b48f81b65
Author: Sara JC Gosline <sara.gosline@pnnl.gov>
Date: 2026-01-29 12:31:29 -0800
Commit message:

 Merge branch 'main' of https://github.com/PNNL-CompBio/spammR
 
Package: spammR
Commit: 7767b3a988abc8b4bf77b48b7bf051e3ce56bb42
Author: Sara JC Gosline <sara.gosline@pnnl.gov>
Date: 2026-01-29 12:31:26 -0800
Commit message:

 updated spatial vignette to account for new diffex bug fix
 
Package: spammR
Commit: ed5d1eadc8c1d091866a10eec0c2cc401d7b17da
Author: Sara JC Gosline <sara.gosline@pnnl.gov>
Date: 2026-01-29 11:40:54 -0800
Commit message:

 Merge pull request #78 from PNNL-CompBio/75-differential-expression-results-and-associated-proteins-not-aligned-correctly-in-calc_spatial_diff_ex-results

fix to calc_spatial_diff_ex 
Package: spammR
Commit: c29a800676202ba1fe1d89d1e69423e6375f7c55
Author: Sara JC Gosline <sara.gosline@pnnl.gov>
Date: 2026-01-29 11:40:34 -0800
Commit message:

 Merge pull request #76 from PNNL-CompBio/feat/forge-catalog

add catalog-info.yaml file for forge catalog 
Package: spammR
Commit: ad1354bb8c78b96b0b01cb999d3e73585e828c37
Author: Sara JC Gosline <sara.gosline@pnnl.gov>
Date: 2026-01-29 11:40:18 -0800
Commit message:

 Merge pull request #74 from PNNL-CompBio/imputation

MinSamp imputation method 
Package: spammR
Commit: 6ca61c7b2d2ae7e87827ea2858b67d9ceb610aae
Author: Yannick Mahlich <yannick.mahlich@pnnl.gov>
Date: 2026-01-29 10:36:29 -0800
Commit message:

 added `sort.by = "none"` to `limma::topTable()` call in `calc_spatial_diff_ex.R` such differential expression results and SPE gene list are in the same order for merging. Also clarified comment in code explaining why we don't sort.
 
Package: spammR
Commit: b18d3ba8891dfa8752ddb9213ba2bcdd0f4bab37
Author: pham259 <jennifer.pham@pnnl.gov>
Date: 2026-01-26 12:13:09 -0800
Commit message:

 add catalog-info.yaml file for forge catalog 
Package: spammR
Commit: fe9d26433afcb432467118db2928e06953cb7732
Author: Yannick Mahlich <yannick.mahlich@pnnl.gov>
Date: 2026-01-22 14:15:17 -0800
Commit message:

 renamed imputation method from 'sampMin' to 'samp_min' to align with style guide and updated function doc string
 
Package: spammR
Commit: ce5f97efe691ecf1cd11743d195533ffe4a2222b
Author: Yannick Mahlich <yannick.mahlich@pnnl.gov>
Date: 2026-01-19 10:45:48 -0800
Commit message:

 add sampMin (sampleMinimum) to imputation methods
 
Package: imageTCGAutils
Commit: ec7a5a8b5e711740ce454c9c352d2f614d15e1cf
Author: LiNk-NY <marcel.ramos@sph.cuny.edu>
Date: 2026-03-10 15:58:41 -0400
Commit message:

 version bump 0.99.17
 
Package: imageTCGAutils
Commit: 6469342aa93f799f7a7d7fd71f8258eb9115de21
Author: LiNk-NY <marcel.ramos@sph.cuny.edu>
Date: 2026-03-10 15:56:37 -0400
Commit message:

 import utils head
 
Package: imageTCGAutils
Commit: b3ea13304754a8fa1b4a7d04f2d95919c3ba1fb1
Author: LiNk-NY <marcel.ramos@sph.cuny.edu>
Date: 2026-03-10 15:56:11 -0400
Commit message:

 remove access_key and secret_key mentions
 
Package: imageTCGAutils
Commit: 5f07cdf4dbc59519db7db7b2034d6ce088789b34
Author: LiNk-NY <marcel.ramos@sph.cuny.edu>
Date: 2026-03-10 15:52:28 -0400
Commit message:

 build ignore *_files folder
 
Package: imageTCGAutils
Commit: 35cb9754d51f733b692bc406d25a7f9a9f9b4fc8
Author: LiNk-NY <marcel.ramos@sph.cuny.edu>
Date: 2026-03-10 15:50:55 -0400
Commit message:

 version bump 0.99.16
 
Package: imageTCGAutils
Commit: 7fe0b6ee51aef0711bf29f79496b5c2bc8fd66e3
Author: LiNk-NY <marcel.ramos@sph.cuny.edu>
Date: 2026-03-10 15:50:50 -0400
Commit message:

 update .Rbuildignore
 
Package: imageTCGAutils
Commit: 5f94939ebd5c1bc08e820813da9a1079dc079d4c
Author: LiNk-NY <marcel.ramos@sph.cuny.edu>
Date: 2026-03-10 15:48:31 -0400
Commit message:

 version bump 0.99.15
 
Package: imageTCGAutils
Commit: 589339ed49539a5ad41313e54eee4cfcb4dfb373
Author: LiNk-NY <marcel.ramos@sph.cuny.edu>
Date: 2026-03-10 15:48:26 -0400
Commit message:

 doc fix: default is geojson for listHoverNet
 
Package: imageTCGAutils
Commit: c9374ea09078c25f9a3b1f23751c36392359755a
Author: LiNk-NY <marcel.ramos@sph.cuny.edu>
Date: 2026-03-10 15:47:56 -0400
Commit message:

 update unit test to aws s3 file list
 
Package: imageTCGAutils
Commit: af4a63c9460cacdcf6514cb0bcb5379a57a39a4a
Author: LiNk-NY <marcel.ramos@sph.cuny.edu>
Date: 2026-03-10 15:45:44 -0400
Commit message:

 use paws to list files from s3 type bucket
 
Package: proBatch
Commit: 18d59ea5597ede2f0b43cb3499b1fc868872b6c5
Author: Yuliya Burankova (Freddsle) <burankova.y@gmail.com>
Date: 2026-03-10 19:34:22 +0100
Commit message:

 Bump version
 
Package: proBatch
Commit: f9714c22c2bed822294e418ff8651947ea7208a7
Author: Yuliya Burankova (Freddsle) <burankova.y@gmail.com>
Date: 2026-03-10 19:27:08 +0100
Commit message:

 Add export for plot_PVCA.df and update function parameters in documentation
 
Package: proBatch
Commit: 0e9dff2911031b5d7c204632c7af4b77821c3153
Author: Yuliya Burankova (Freddsle) <burankova.y@gmail.com>
Date: 2026-03-10 19:08:03 +0100
Commit message:

 Update .Rbuildignore and .gitignore to include additional vignettes and output files
 
Package: proBatch
Commit: 7332ae13c73e5184045ea0dd72f9c5d0fe878719
Author: Yuliya Burankova (Freddsle) <burankova.y@gmail.com>
Date: 2026-03-10 18:28:10 +0100
Commit message:

 Refactor PVCA plotting functions and update documentation for consistency
 
Package: proBatch
Commit: c9f5a938e98dc061e7c3744e65860a03c1d48339
Author: Yuliya Burankova (Freddsle) <burankova.y@gmail.com>
Date: 2026-03-10 18:06:42 +0100
Commit message:

 Add BiocStyle to output format in vignettes and update Imports in DESCRIPTION
 
Package: proBatch
Commit: 2343558db56611b26963b145a753c7bb28690ea9
Author: Yuliya Burankova (Freddsle) <burankova.y@gmail.com>
Date: 2026-03-10 18:01:16 +0100
Commit message:

 Remove unnecessary blank lines in test files
 
Package: proBatch
Commit: 0584b25340b0f37e72de4f0802cb21af9a849b40
Author: Yuliya Burankova (Freddsle) <burankova.y@gmail.com>
Date: 2026-03-10 18:01:09 +0100
Commit message:

 Remove unnecessary blank lines in auxiliary and date_conversion scripts
 
Package: proBatch
Commit: 091eb51a953440967a71692a0ae55c9e91d8d061
Author: Yuliya Burankova (Freddsle) <burankova.y@gmail.com>
Date: 2026-03-10 17:57:28 +0100
Commit message:

 Update .gitignore and .Rbuildignore to include additional files; refine documentation links in R scripts and vignettes
 
Package: proBatch
Commit: 2252aa3030038c6312f4e9f4b67eccf28dd96d00
Author: Yuliya Burankova (Freddsle) <burankova.y@gmail.com>
Date: 2026-03-10 17:13:33 +0100
Commit message:

 Update .gitignore to exclude additional cache files and figures from vignettes
 
Package: Rhdf5lib
Commit: e2d0017a0fc88c4222119c974fcb4c8e8d69b5cd
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-10 17:35:16 +0100
Commit message:

 Run devtools::document()
 
Package: Rhdf5lib
Commit: cc8254504ab7dc116424e2dbe2b41cb085ef6b0d
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-10 17:30:50 +0100
Commit message:

 Add noRd to .getDynamicLinks() and .getSzipLoc()
 
Package: scRNAseqApp
Commit: 7a8153a1ff23003907a38dba3338582ce4dee2fa
Author: Jianhong Ou <jianhong.ou@gmail.com>
Date: 2026-03-10 12:06:06 -0400
Commit message:

 Add 'add' and 'delete' method for lasso.
 
Package: Rhdf5lib
Commit: 8d39845ecf132fd5b41bcc156c1741bb26e64d2d
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-10 15:28:27 +0100
Commit message:

 Bump version
 
Package: Rhdf5lib
Commit: 495dc6da1d09ad308525de17124c274963d454ca
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-10 15:28:10 +0100
Commit message:

 Restore ros3 support
 
Package: Rhdf5lib
Commit: e5d224efdb3512af15e3d6c0fd84bc8e5867bb1d
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-02-25 14:57:23 +0100
Commit message:

 Bump version
 
Package: Rhdf5lib
Commit: 79d35dad0ad315969896bd66f79dec82da000b51
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-09 10:27:00 +0100
Commit message:

 Mention switch to CMake in NEWS
 
Package: Rhdf5lib
Commit: 1ee1d8f72e66b419d746f8b6b39a980cd4288f54
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-09 10:04:26 +0100
Commit message:

 Reactivate ros3 support
 
Package: Rhdf5lib
Commit: a758732978720d92d8822ea4f09ff911a38e2524
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-03-06 15:47:23 +0100
Commit message:

 Disable ROS3 for now
 
Package: Rhdf5lib
Commit: 4dfdf6ecd9b4c85c7fa94c116e750b45cc2cc9c2
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-02-27 10:48:19 +0100
Commit message:

 Remove windows specific step
 
Package: Rhdf5lib
Commit: 3e6e2037ad1aff6c0e467c0a4639b2eeaf4899af
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-02-27 10:47:29 +0100
Commit message:

 Install openssl on macOS 15
 
Package: Rhdf5lib
Commit: 2083acfa78bcc5cf4ff28bc9f1cd3d21d6f20b8e
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-02-26 11:27:27 +0100
Commit message:

 Port over https://github.com/HDFGroup/hdf5/commit/e84e5ee4672e22753a4d3d600dca2d5291953d78
 
Package: Rhdf5lib
Commit: 7a153add99e060e11f7e3c584bfae0dcad15cd8d
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-02-26 10:46:46 +0100
Commit message:

 Add _build_ folders to cleanup
 
Package: Rhdf5lib
Commit: 28c36dc8c2336f6b4ecb6f98362ba5d497e9e518
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-02-25 14:59:22 +0100
Commit message:

 Let linguist know which files are vendored
 
Package: Rhdf5lib
Commit: 65f2ba7dee2dc19ad9499a1b84e96b5dd2299e0c
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-02-25 14:57:16 +0100
Commit message:

 Update HDF5 copyright location
 
Package: Rhdf5lib
Commit: d4bcf7ba0a56310c920a575f9df1409a30a035c4
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-02-25 14:50:40 +0100
Commit message:

 Add note about non standard systems
 
Package: Rhdf5lib
Commit: cd60db346c99aa984299f068fcc7e7cbdffbea71
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-02-24 15:30:27 +0100
Commit message:

 Remove outdated vignette
 
Package: Rhdf5lib
Commit: 210db98215a12c5a35888b2e79e24d5206295aea
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-02-24 12:12:43 +0100
Commit message:

 Update pkgconfig() to work with CMake compilation
 
Package: Rhdf5lib
Commit: 544f30a8ffabf007bfcd3fde0425b4368d4a36da
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-02-23 12:28:05 +0100
Commit message:

 Get lib version from settings file

Co-authored-by: LTLA <infinite.monkeys.with.keyboards@gmail.com>