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: igvShiny
Commit: 6325219436793351e32df0f85489af5a2a128360
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-31 07:54:08 +0200
Commit message:
Commit: 6325219436793351e32df0f85489af5a2a128360
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-31 07:54:08 +0200
Commit message:
docs: add the Track options reference vignette (#160) * docs: add the Track options reference vignette (#159) Replace the overview vignette with a reference of every track type and the options it takes. The overview held install, minimal-app and custom-genome sections that getting-started already covers better; its one unique piece, the dataMode = "http" example, moves there. Every option documented was checked against the unminified igv.js 3.8.4, the build bundled in inst/htmlwidgets/lib. Names the library does not read are left out rather than described - they are collected in #159. Fills the two dead references to a "Track options reference" vignette that getting-started has carried since it was written. * docs: run the reference examples instead of showing them BiocCheck warns when at least half the vignette chunks across the package go unevaluated, and the overview vignette this PR removes was the one holding that ratio down. Master sat at 41%; adding a reference of eval=FALSE loader calls took it to 57%. Padding the count would have been the wrong fix. The loaders are one-way messages to a browser, so a session that prints instead of sending makes every example runnable - and the printed message is better documentation than the call alone, since it shows the defaults the loader fills in and what igv.js actually receives. igvShiny() already builds outside a shiny session, so the allowlist example runs too and prints the real warning. Combined ratio is now 33%. Also wraps the three table rows over 80 characters, moving the junction vocabularies into a list below the table, and builds the remote genome URLs with paste0 rather than file.path, which is what the vignette this text came from did. * docs: wrap the one vignette line over 80 characters
Package: Rarr
Commit: ec6b6771a30739d5cce8d41129b422d972d4a2c5
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-31 00:07:44 +0200
Commit message:
Commit: ec6b6771a30739d5cce8d41129b422d972d4a2c5
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-31 00:07:44 +0200
Commit message:
Silence warning in tests
Package: Rarr
Commit: aa1586a807edd611a474858975ebd280e98e9cdb
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 23:57:11 +0200
Commit message:
Commit: aa1586a807edd611a474858975ebd280e98e9cdb
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 23:57:11 +0200
Commit message:
Improve base zstd detection
Package: Rarr
Commit: cafcd9f3dd09587b51ef7c056cb58d693e886079
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 17:24:01 +0200
Commit message:
Commit: cafcd9f3dd09587b51ef7c056cb58d693e886079
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 17:24:01 +0200
Commit message:
Use vapply() instead of mapply()
Package: Rarr
Commit: 131293df183280c7d2b764aa4505dd79454fd53a
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 17:15:49 +0200
Commit message:
Commit: 131293df183280c7d2b764aa4505dd79454fd53a
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 17:15:49 +0200
Commit message:
Avoid file.info()
Package: Rarr
Commit: e915f4745edbf48f0a91ca0570730fb04d6ded90
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 17:14:11 +0200
Commit message:
Commit: e915f4745edbf48f0a91ca0570730fb04d6ded90
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 17:14:11 +0200
Commit message:
Avoid do.call()
Package: mia
Commit: 25fa7bb51792566131f2bd8d07b4ebd1fde54b38
Author: Tuomas Borman <60338854+TuomasBorman@users.noreply.github.com>
Date: 2026-07-31 08:42:31 +0300
Commit message:
Commit: 25fa7bb51792566131f2bd8d07b4ebd1fde54b38
Author: Tuomas Borman <60338854+TuomasBorman@users.noreply.github.com>
Date: 2026-07-31 08:42:31 +0300
Commit message:
Tidy ibdmdb data (#838)
Package: igvShiny
Commit: 0488cfdee646d07462a34642d753bc98512b2f52
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-31 00:04:00 +0200
Commit message:
Commit: 0488cfdee646d07462a34642d753bc98512b2f52
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-31 00:04:00 +0200
Commit message:
fix: drop the track options igv.js does not read (#161) * fix: drop the track options igv.js does not read (#159) Fourteen names on .validIgvTrackOptions are read by nothing in igv.js 3.8.4. They passed validation, reached the browser and were ignored there, so a user passing one got no warning from R, no message from igv.js, and a track drawn with defaults - the exact outcome the allowlist exists to prevent. autoScaleGroup was the costly one: it sat next to the working autoscaleGroup, so capitalising the S silently ungrouped the track. negColorScale and posColorScale go the other way. They are what SegTrack reads, they were not on the list, and until now there was no way to set a seg track's colour scales from R. colorByAttribute is ours rather than igv.js's - a loader argument translated to colorBy in igvShiny.js. It travels through base.msg.to.igv, which never meets the allowlist, so the loaders are unaffected; only the trackConfig route, which igv.js ignored anyway, is gone. The new test holds the list to the bundled build. A minifier renames local variables but not property names, which are reached by string, so a whole-identifier hit in igv-3.8.4.min.js means igv.js reads that name off an object. Substring matching would not do: negColor sits inside negColorScale, and autoScaleGroup inside the internal autoScaleGroupColorHash. * fix: read the bundled igv.js as bytes in the allowlist test readLines() has to pick an encoding, and on a minified bundle that choice went differently on Windows: the text came back short, every option missed, and the test reported 66 dead options instead of a bad read. Reading the bytes takes encoding out of it, and asserting the length means a short read now fails as a short read. * test: pin the names the allowlist check has to reject The positive check passes just as well when the search is broken and matches everything, so it says nothing on its own. Asserting that the thirteen names #159 removed are still not found makes the search prove it can fail. Raised by CodeRabbit, which also asked for matching constrained to property access forms. Left alone: in minified code a property is reached as .x, x:, ["x"] and through destructuring, so the constraint would be a list of shapes to keep in sync, and its failure mode is a false accusation against a working option. The negative cases cover what that was meant to catch.
Package: rhdf5filters
Commit: 4524f1e29d354426f7345222f5dc943b2b5c1a69
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 23:47:15 +0200
Commit message:
Commit: 4524f1e29d354426f7345222f5dc943b2b5c1a69
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 23:47:15 +0200
Commit message:
Bump version
Package: rhdf5filters
Commit: 86d38d2bc0109f7c8dd0ee07ef9d113754c3770e
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 18:29:25 +0200
Commit message:
Commit: 86d38d2bc0109f7c8dd0ee07ef9d113754c3770e
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 18:29:25 +0200
Commit message:
Remove unused code
Package: rhdf5filters
Commit: 612d7651924fa33c73cc6a12601a9e419afa4d6b
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 18:27:23 +0200
Commit message:
Commit: 612d7651924fa33c73cc6a12601a9e419afa4d6b
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 18:27:23 +0200
Commit message:
Add title to sections
Package: rhdf5filters
Commit: 3072933440d4760b6db9804e17a2d649b8cacfef
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 18:26:28 +0200
Commit message:
Commit: 3072933440d4760b6db9804e17a2d649b8cacfef
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 18:26:28 +0200
Commit message:
Avoid redefining the same var multiple times
Package: rhdf5filters
Commit: da8a52b9e802bf019ba1255a28520d95b1ac46d7
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 18:17:53 +0200
Commit message:
Commit: da8a52b9e802bf019ba1255a28520d95b1ac46d7
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 18:17:53 +0200
Commit message:
Rename unused var
Package: MSstatsShiny
Commit: f494440308c59c80f301ede83e5063379762a32e
Author: tonywu1999 <anthonywu92@gmail.com>
Date: 2026-07-30 15:18:33 -0400
Commit message:
Commit: f494440308c59c80f301ede83e5063379762a32e
Author: tonywu1999 <anthonywu92@gmail.com>
Date: 2026-07-30 15:18:33 -0400
Commit message:
Update package version to 1.15.4 Bump version number from 1.15.3 to 1.15.4.
Package: MSstatsShiny
Commit: 63674ae9ce0138c50ec731cca42eff5fbca67086
Author: Swaraj Patil <patil.swaraj@northeastern.edu>
Date: 2026-07-30 15:16:32 -0400
Commit message:
Commit: 63674ae9ce0138c50ec731cca42eff5fbca67086
Author: Swaraj Patil <patil.swaraj@northeastern.edu>
Date: 2026-07-30 15:16:32 -0400
Commit message:
feat(networks): Add metabolomics support to the Network Interpretation tab (#223)
Package: MSstatsShiny
Commit: 7bd394b6797c12629f3ab83d5a8783e4536f4200
Author: Swaraj Patil <patil.swaraj@northeastern.edu>
Date: 2026-07-24 11:24:17 -0400
Commit message:
Commit: 7bd394b6797c12629f3ab83d5a8783e4536f4200
Author: Swaraj Patil <patil.swaraj@northeastern.edu>
Date: 2026-07-24 11:24:17 -0400
Commit message:
feat(data-processing): Add Data Upload tab to QC page for summarized data (#221)
Package: MSstatsShiny
Commit: 7697011b711b652c76a1f3412b61874baf907b52
Author: Tony Wu <wu.anthon@northeastern.edu>
Date: 2026-07-20 21:48:09 -0400
Commit message:
Commit: 7697011b711b652c76a1f3412b61874baf907b52
Author: Tony Wu <wu.anthon@northeastern.edu>
Date: 2026-07-20 21:48:09 -0400
Commit message:
Update installation with remotes::install
Package: MSstatsShiny
Commit: 56347f482199be38cbb9a239637797fa515cd80d
Author: Tony Wu <wu.anthon@northeastern.edu>
Date: 2026-07-20 21:35:05 -0400
Commit message:
Commit: 56347f482199be38cbb9a239637797fa515cd80d
Author: Tony Wu <wu.anthon@northeastern.edu>
Date: 2026-07-20 21:35:05 -0400
Commit message:
docs(readme): Update README with up-to-date information
Package: MSstatsBioNet
Commit: 7d4310dd84ad4d7c375485038a19d4e34e6ae4f7
Author: Swaraj Patil <patil.swaraj@northeastern.edu>
Date: 2026-07-30 14:26:04 -0400
Commit message:
Commit: 7d4310dd84ad4d7c375485038a19d4e34e6ae4f7
Author: Swaraj Patil <patil.swaraj@northeastern.edu>
Date: 2026-07-30 14:26:04 -0400
Commit message:
Gate the PTM legend callout on PTM data presence (#107)
Package: mia
Commit: af684cb7328dfee2d9a19619b6c7a3179d062dd6
Author: Tuomas Borman <60338854+TuomasBorman@users.noreply.github.com>
Date: 2026-07-30 18:55:48 +0300
Commit message:
Commit: af684cb7328dfee2d9a19619b6c7a3179d062dd6
Author: Tuomas Borman <60338854+TuomasBorman@users.noreply.github.com>
Date: 2026-07-30 18:55:48 +0300
Commit message:
Make formula parsing more robust (#840)
Package: mia
Commit: b7072b9815158787fb368cb45d71ddf76fd313db
Author: Sabuj Chandra Bhowmick <sabuj606@gmail.com>
Date: 2026-07-30 18:26:15 +0300
Commit message:
Commit: b7072b9815158787fb368cb45d71ddf76fd313db
Author: Sabuj Chandra Bhowmick <sabuj606@gmail.com>
Date: 2026-07-30 18:26:15 +0300
Commit message:
Filter RPCAInput (#837) Co-authored-by: Tuomas Borman <tvborm@utu.fi> Co-authored-by: Tuomas Borman <60338854+TuomasBorman@users.noreply.github.com>
Package: mia
Commit: 2ac01c9d1096739a443821b89b5a4e04f915be6f
Author: Sabuj Chandra Bhowmick <sabuj606@gmail.com>
Date: 2026-07-30 17:31:04 +0300
Commit message:
Commit: 2ac01c9d1096739a443821b89b5a4e04f915be6f
Author: Sabuj Chandra Bhowmick <sabuj606@gmail.com>
Date: 2026-07-30 17:31:04 +0300
Commit message:
Disable deploying documentation from PR (#835) Co-authored-by: Tuomas Borman <60338854+TuomasBorman@users.noreply.github.com>
Package: mia
Commit: f1a03ac65026610a0da1649397c6944e610b551f
Author: Tuomas Borman <60338854+TuomasBorman@users.noreply.github.com>
Date: 2026-07-30 16:44:52 +0300
Commit message:
Commit: f1a03ac65026610a0da1649397c6944e610b551f
Author: Tuomas Borman <60338854+TuomasBorman@users.noreply.github.com>
Date: 2026-07-30 16:44:52 +0300
Commit message:
Update package loading message (#839)
Package: mia
Commit: e5b393fcd1ec517a994081b46b23bc5ea5c9174a
Author: jepasan <148062058+jepasan@users.noreply.github.com>
Date: 2026-07-29 10:24:42 +0300
Commit message:
Commit: e5b393fcd1ec517a994081b46b23bc5ea5c9174a
Author: jepasan <148062058+jepasan@users.noreply.github.com>
Date: 2026-07-29 10:24:42 +0300
Commit message:
Striped Unifrac C++ implementation (#829) Co-authored-by: Leo Lahti <leo.lahti@iki.fi> Co-authored-by: TuomasBorman <tvborm@utu.fi> Co-authored-by: Tuomas Borman <60338854+TuomasBorman@users.noreply.github.com>
Package: plyranges
Commit: 5e88325af35a70f4377af8da797f2eaaa0e34488
Author: Mike Love <mikelove@users.noreply.github.com>
Date: 2026-07-30 11:23:34 -0400
Commit message:
Commit: 5e88325af35a70f4377af8da797f2eaaa0e34488
Author: Mike Love <mikelove@users.noreply.github.com>
Date: 2026-07-30 11:23:34 -0400
Commit message:
version bump
Package: plyranges
Commit: cc87bbe1233165f15a4adb3960b2835686b9056d
Author: Mike Love <mikelove@users.noreply.github.com>
Date: 2026-07-30 11:23:23 -0400
Commit message:
Commit: cc87bbe1233165f15a4adb3960b2835686b9056d
Author: Mike Love <mikelove@users.noreply.github.com>
Date: 2026-07-30 11:23:23 -0400
Commit message:
adding note about n, n_distinct, between and namespaces
Package: Rarr
Commit: 0992d8b903349786b171611595ec62dffe512193
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 15:55:18 +0200
Commit message:
Commit: 0992d8b903349786b171611595ec62dffe512193
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 15:55:18 +0200
Commit message:
Bump version
Package: Rarr
Commit: e28dc6c78b6c9533a23237a4d41a166f5124cd61
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 15:54:20 +0200
Commit message:
Commit: e28dc6c78b6c9533a23237a4d41a166f5124cd61
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 15:54:20 +0200
Commit message:
Document move to base R de/compression
Package: Rarr
Commit: 5f9a4369e111e45a161c821a1d36469e94aa3128
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 16:06:02 +0200
Commit message:
Commit: 5f9a4369e111e45a161c821a1d36469e94aa3128
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 16:06:02 +0200
Commit message:
Run devtools::document()
Package: Rarr
Commit: 41f2b72a6fdf5525640a86fb4bf371d8b6212e6d
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 15:42:42 +0200
Commit message:
Commit: 41f2b72a6fdf5525640a86fb4bf371d8b6212e6d
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 15:42:42 +0200
Commit message:
Add warnings on ignored compression levels
Package: Rarr
Commit: 50fabae8267fbe984656eed20228cf296bcdf497
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 15:28:32 +0200
Commit message:
Commit: 50fabae8267fbe984656eed20228cf296bcdf497
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 15:28:32 +0200
Commit message:
Default to base R zstd de/compression
Package: Rarr
Commit: 086538ff27a0bc49e36c3cfb15980f0dbf5466fe
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-06-19 17:02:18 +0200
Commit message:
Commit: 086538ff27a0bc49e36c3cfb15980f0dbf5466fe
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-06-19 17:02:18 +0200
Commit message:
Use codec infra for compressors Fix #126
Package: DECIPHER
Commit: 2c16e98e720cacd67da09b0f87ef87b95b1add2f
Author: Erik Wright <sixfoot10@Eriks-MacBook-Pro-2.local>
Date: 2026-07-30 09:25:52 -0500
Commit message:
Commit: 2c16e98e720cacd67da09b0f87ef87b95b1add2f
Author: Erik Wright <sixfoot10@Eriks-MacBook-Pro-2.local>
Date: 2026-07-30 09:25:52 -0500
Commit message:
Updates. Committer: Erik Wright <Erik.Wright@bcm.edu> Changes to be committed: modified: DESCRIPTION modified: NAMESPACE modified: R/BrowseSeqs.R modified: R/InferRecombination.R modified: R/MaskAlignment.R modified: R/ReadDendrogram.R modified: R/Treeline.R modified: R/Zipline.R modified: man/BrowseSeqs.Rd modified: man/DistanceMatrix.Rd modified: man/InferRecombination.Rd modified: man/MaskAlignment.Rd modified: man/ReadDendrogram.Rd modified: man/Treeline.Rd modified: man/WriteDendrogram.Rd modified: man/Zipline.Rd modified: src/ChainSegments.c modified: src/Cluster.c modified: vignettes/DECIPHERing.Rnw modified: vignettes/GrowingTrees.Rnw
Package: Rarr
Commit: ca8dd991b65a779f3b86d1b6150bdd31d2740b1a
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 14:34:07 +0200
Commit message:
Commit: ca8dd991b65a779f3b86d1b6150bdd31d2740b1a
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 14:34:07 +0200
Commit message:
Bump version
Package: Rarr
Commit: 799149f9319e0d1b12aa04aa8e20163d845fe031
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 14:34:01 +0200
Commit message:
Commit: 799149f9319e0d1b12aa04aa8e20163d845fe031
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 14:34:01 +0200
Commit message:
Mention new read_zarr_consolidated_metadata() in NEWS
Package: Rarr
Commit: 0bc53ed81929a7cb6559441c573ec8d88081cd79
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 12:28:51 +0200
Commit message:
Commit: 0bc53ed81929a7cb6559441c573ec8d88081cd79
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 12:28:51 +0200
Commit message:
Run devtools::document()
Package: Rarr
Commit: 68baf849dad251434d222cbd2230ae142bc3ea15
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 14:17:35 +0200
Commit message:
Commit: 68baf849dad251434d222cbd2230ae142bc3ea15
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 14:17:35 +0200
Commit message:
Rename function for export
Package: Rarr
Commit: bbd8ae6036b2299dcc07e674cb09c56e3ab378e7
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 12:33:08 +0200
Commit message:
Commit: bbd8ae6036b2299dcc07e674cb09c56e3ab378e7
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 12:33:08 +0200
Commit message:
Refine docs and export
Package: Rarr
Commit: 0e1b8339cc496836f66d7f887746e903575bc00e
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 13:58:00 +0200
Commit message:
Commit: 0e1b8339cc496836f66d7f887746e903575bc00e
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 13:58:00 +0200
Commit message:
Always return consolidated metadata as v3
Package: Rarr
Commit: ba85e897d40203a5a22149e97501c0786011df5f
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 12:26:08 +0200
Commit message:
Commit: ba85e897d40203a5a22149e97501c0786011df5f
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 12:26:08 +0200
Commit message:
Remove unused nodes argument
Package: Rarr
Commit: 96f176fbe1df3e3e947481d5ac6b53bfdce05ca9
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 11:47:19 +0200
Commit message:
Commit: 96f176fbe1df3e3e947481d5ac6b53bfdce05ca9
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-30 11:47:19 +0200
Commit message:
Add consolidate argument to read_consolidate_metadata
Package: pmp
Commit: 72ca2e0a84f35cf5ff2f81f9c788ac8c25e525da
Author: Gavin Rhys Lloyd <grlloyd@users.noreply.github.com>
Date: 2026-07-30 11:45:06 +0100
Commit message:
Commit: 72ca2e0a84f35cf5ff2f81f9c788ac8c25e525da
Author: Gavin Rhys Lloyd <grlloyd@users.noreply.github.com>
Date: 2026-07-30 11:45:06 +0100
Commit message:
update news and description for BioC
Package: pmp
Commit: 523d0f55561927aeee2c597e87be503820024a7f
Author: Gavin Rhys Lloyd <grlloyd@users.noreply.github.com>
Date: 2026-07-30 11:28:17 +0100
Commit message:
Commit: 523d0f55561927aeee2c597e87be503820024a7f
Author: Gavin Rhys Lloyd <grlloyd@users.noreply.github.com>
Date: 2026-07-30 11:28:17 +0100
Commit message:
restore random seed after knn impute #34
Package: pmp
Commit: 7412afde1e3fb250a76302de92da14f6b85ca657
Author: Gavin Rhys Lloyd <grlloyd@users.noreply.github.com>
Date: 2026-07-30 10:08:58 +0100
Commit message:
Commit: 7412afde1e3fb250a76302de92da14f6b85ca657
Author: Gavin Rhys Lloyd <grlloyd@users.noreply.github.com>
Date: 2026-07-30 10:08:58 +0100
Commit message:
Merge remote-tracking branch 'upstream/devel' into devel
Package: pmp
Commit: d589151bcb2d57da0b93d7d937c03a82105f6d56
Author: Gavin Rhys Lloyd <grlloyd@users.noreply.github.com>
Date: 2026-07-30 10:08:42 +0100
Commit message:
Commit: d589151bcb2d57da0b93d7d937c03a82105f6d56
Author: Gavin Rhys Lloyd <grlloyd@users.noreply.github.com>
Date: 2026-07-30 10:08:42 +0100
Commit message:
fix pqn ref_mean
Package: TraianProt
Commit: 8317e3d62b7c32d96fae4a8b5d7f79fa8ff8a366
Author: Samuel <sdelacam@ucm.es>
Date: 2026-07-30 10:52:27 +0200
Commit message:
Commit: 8317e3d62b7c32d96fae4a8b5d7f79fa8ff8a366
Author: Samuel <sdelacam@ucm.es>
Date: 2026-07-30 10:52:27 +0200
Commit message:
Merge branch 'main' of https://github.com/SamueldelaCamaraFuentes/TraianProt
Package: TraianProt
Commit: 03a143ac5523d7a93528e9dd136a30ae8a837e29
Author: Samuel <sdelacam@ucm.es>
Date: 2026-07-30 10:45:27 +0200
Commit message:
Commit: 03a143ac5523d7a93528e9dd136a30ae8a837e29
Author: Samuel <sdelacam@ucm.es>
Date: 2026-07-30 10:45:27 +0200
Commit message:
Fix some issues related with Bioconductor update
Package: TraianProt
Commit: 77a3b496dfb3b7b7b332a7c92a469cc42653ba33
Author: Samuel <123367287+SamueldelaCamaraFuentes@users.noreply.github.com>
Date: 2026-07-22 11:33:43 +0200
Commit message:
Commit: 77a3b496dfb3b7b7b332a7c92a469cc42653ba33
Author: Samuel <123367287+SamueldelaCamaraFuentes@users.noreply.github.com>
Date: 2026-07-22 11:33:43 +0200
Commit message:
Enhance README with logo and status badges Updated README to improve formatting and add badges.
Package: TraianProt
Commit: d336a58c37ba002e56f183d9c7d53ad3f1ae52e6
Author: Samuel <123367287+SamueldelaCamaraFuentes@users.noreply.github.com>
Date: 2026-07-20 13:41:50 +0200
Commit message:
Commit: d336a58c37ba002e56f183d9c7d53ad3f1ae52e6
Author: Samuel <123367287+SamueldelaCamaraFuentes@users.noreply.github.com>
Date: 2026-07-20 13:41:50 +0200
Commit message:
Fix Shiny App link in README.md
Package: TraianProt
Commit: 5eb3dec515197889fcf8f057ae936568f2ddd2df
Author: Samuel <123367287+SamueldelaCamaraFuentes@users.noreply.github.com>
Date: 2026-07-20 13:40:47 +0200
Commit message:
Commit: 5eb3dec515197889fcf8f057ae936568f2ddd2df
Author: Samuel <123367287+SamueldelaCamaraFuentes@users.noreply.github.com>
Date: 2026-07-20 13:40:47 +0200
Commit message:
Update README.md
Package: TraianProt
Commit: dddf0def34818745628fe70b7673ae2252c5ae1c
Author: Samuel <123367287+SamueldelaCamaraFuentes@users.noreply.github.com>
Date: 2026-07-16 16:03:49 +0200
Commit message:
Commit: dddf0def34818745628fe70b7673ae2252c5ae1c
Author: Samuel <123367287+SamueldelaCamaraFuentes@users.noreply.github.com>
Date: 2026-07-16 16:03:49 +0200
Commit message:
Update README.md
Package: TraianProt
Commit: 8b45c67f20eaad1a9654927ecd22dfef4005ece9
Author: Samuel <123367287+SamueldelaCamaraFuentes@users.noreply.github.com>
Date: 2026-07-16 16:02:59 +0200
Commit message:
Commit: 8b45c67f20eaad1a9654927ecd22dfef4005ece9
Author: Samuel <123367287+SamueldelaCamaraFuentes@users.noreply.github.com>
Date: 2026-07-16 16:02:59 +0200
Commit message:
Add files via upload
Package: TraianProt
Commit: 098daf5c227bd9c0a6c41db2414b9454d269d357
Author: Samuel <123367287+SamueldelaCamaraFuentes@users.noreply.github.com>
Date: 2026-07-16 15:44:19 +0200
Commit message:
Commit: 098daf5c227bd9c0a6c41db2414b9454d269d357
Author: Samuel <123367287+SamueldelaCamaraFuentes@users.noreply.github.com>
Date: 2026-07-16 15:44:19 +0200
Commit message:
Fix Shiny App link in README Updated the link for the Shiny App badge to the correct URL.
Package: TraianProt
Commit: bfc98a64adbdc09c972d65a3e5278f7dc2785c65
Author: Samuel <123367287+SamueldelaCamaraFuentes@users.noreply.github.com>
Date: 2026-07-16 15:42:33 +0200
Commit message:
Commit: bfc98a64adbdc09c972d65a3e5278f7dc2785c65
Author: Samuel <123367287+SamueldelaCamaraFuentes@users.noreply.github.com>
Date: 2026-07-16 15:42:33 +0200
Commit message:
Enhance README with badges and logo update Added badges for Bioconductor build status, Shiny app launch, and GPL license to README.
Package: BamScale
Commit: 1a515a763e27f977a9ea121ad199be3e649072db
Author: Chirag Parsania <chirag.parsania@gmail.com>
Date: 2026-07-30 16:13:08 +1000
Commit message:
Commit: 1a515a763e27f977a9ea121ad199be3e649072db
Author: Chirag Parsania <chirag.parsania@gmail.com>
Date: 2026-07-30 16:13:08 +1000
Commit message:
Bump version to 0.99.13 and add NEWS Version bump and NEWS entry for the Bioconductor devel sync: compatible seq/qual XStringSet output built in C, GAlignments header seqlengths fix, .onLoad C-callable provider loading, workflow benchmarks, and README refresh. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Package: BamScale
Commit: 3b5054d9e37805f03a5fed126e8a803da90e3ed9
Author: Chirag Parsania, Ph.D. <chirag.parsania@gmail.com>
Date: 2026-07-30 16:02:36 +1000
Commit message:
Commit: 3b5054d9e37805f03a5fed126e8a803da90e3ed9
Author: Chirag Parsania, Ph.D. <chirag.parsania@gmail.com>
Date: 2026-07-30 16:02:36 +1000
Commit message:
Merge pull request #1 from cparsania/perf/native-columns
Package: BamScale
Commit: 11bec8b9f38a81f8c22d1b598bbdd3018201c4f1
Author: Chirag Parsania <chirag.parsania@gmail.com>
Date: 2026-07-30 15:48:25 +1000
Commit message:
Commit: 11bec8b9f38a81f8c22d1b598bbdd3018201c4f1
Author: Chirag Parsania <chirag.parsania@gmail.com>
Date: 2026-07-30 15:48:25 +1000
Commit message:
Refresh README: latest benchmarks and Bioconductor status Rewrite the README around the current results: a highlights block, a single-file read-throughput table (2.3-3.2x vs scanBam/readGAlignments), and an end-to-end workflow table framed by read fraction / Amdahl's law (ATAC QC 3.7x down to coverage->bigWig 1.2x), with the byte-identical correctness statement. Merge the overlapping Why/Compatibility and benchmark sections, and tighten install, quick start, and the seq/qual compact-vs-compatible notes. Reflect that BamScale is accepted on Bioconductor (devel/3.24): use the Bioconductor availability/build/downloads badges and lead installation with BiocManager; keep the R-CMD-check and pkgdown badges. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Package: BamScale
Commit: 78fc69ede42b90e13f7b572020abb01659cf8b0c
Author: Chirag Parsania <chirag.parsania@gmail.com>
Date: 2026-07-30 15:28:34 +1000
Commit message:
Commit: 78fc69ede42b90e13f7b572020abb01659cf8b0c
Author: Chirag Parsania <chirag.parsania@gmail.com>
Date: 2026-07-30 15:28:34 +1000
Commit message:
Workflow benchmarks, self-contained vignette, and build hygiene Add an end-to-end workflow benchmark harness under inst/benchmarks: bench_common.R (shared helpers + phase-aware read/compute/write timing engine), run_workflow_benchmark.R (coverage->bigWig and ATAC fragment-size QC drivers), and download_atac_data.R (ENCODE ATAC fetch + index). Remove the superseded March baseline runs and manuscript_full_benchmark_report.qmd. Rewrite vignettes/benchmark-results.Rmd as a concise, self-contained summary (hardcoded representative numbers and a runnable bam_read demo; no live CSV reads). .Rbuildignore: keep benchmark_results/ and transient top-level outputs out of the build tarball, and exclude a private manuscript draft. .gitignore: keep the private manuscript sources untracked. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Package: BamScale
Commit: 8c3872614440c29ea2b1fa623dad7fe932ad441d
Author: Chirag Parsania <chirag.parsania@gmail.com>
Date: 2026-07-30 15:28:08 +1000
Commit message:
Commit: 8c3872614440c29ea2b1fa623dad7fe932ad441d
Author: Chirag Parsania <chirag.parsania@gmail.com>
Date: 2026-07-30 15:28:08 +1000
Commit message:
Compatible seq/qual XStringSet objects and correct GAlignments seqlengths Return seq/qual as DNAStringSet/PhredQuality built directly from the shared packed byte buffer in C (new src/xstringset_build.c using the IRanges/XVector C-callable constructors), so the compatible read path no longer re-encodes via character vectors; .bamscale_scanbam_biostrings is now a no-op fallback that only fires if a plain character column reaches it. .onLoad force-loads the C-callable providers (S4Vectors/IRanges/XVector/Biostrings) and GenomicAlignments so fresh SnowParam SOCK workers resolve the constructors and the GAlignments class. Fix .bamscale_build_galignments_seqinfo to carry the BAM-header sequence lengths into the GAlignments Seqinfo (via GenomeInfoDb::Seqinfo). Previously seqlengths were NA, so coverage() extended each seqlevel only to its max end and export.bw() wrote truncated chromosome sizes, diverging from readGAlignments(). DESCRIPTION: GenomeInfoDb -> Imports; LinkingTo += S4Vectors, IRanges, XVector. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Package: BamScale
Commit: a73579cbe1899710c951132eace1135f1d356b22
Author: Chirag Parsania <chirag.parsania@gmail.com>
Date: 2026-07-23 22:28:43 +1000
Commit message:
Commit: a73579cbe1899710c951132eace1135f1d356b22
Author: Chirag Parsania <chirag.parsania@gmail.com>
Date: 2026-07-23 22:28:43 +1000
Commit message:
Native tag/factor columns and packed qname/cigar reader path
Performance and scanBam-compatibility work in the ompBAM reader:
- rname/mrnm/strand are returned as factors (levels = header reference
names / c("+","-","*")), matching Rsamtools::scanBam. Unmapped or unset
references are NA rather than "*". Built directly from the integer ref-id
codes, and the GAlignments path consumes the factor's Rle without
re-hashing names into levels.
- Numeric SAM tags are returned with native types: c/C/s/S/i/I -> integer
(double when a value exceeds the R integer range), f -> double, and
A/Z/H/B -> character. Absent values are NA. Implemented as a
type-widening per-thread accumulator with a correct cross-thread merge
and string fallback for mixed-type columns.
- qname/cigar are accumulated through PackedStringColumn (one contiguous
byte blob + offsets) instead of std::vector<std::string>, removing a
per-read heap allocation on the hot path.
- alignas(64) on the per-thread ThreadChunk to avoid cross-thread false
sharing of vector state.
- Return protected Rcpp temporaries from factor/tag construction to avoid a
collect-during-realloc hazard when assigning into the growing result list.
- Add tests locking the factor and native-tag contracts; update docs.
- Bump version to 0.99.11.
Package: QuasR
Commit: 9b802c5f2dbf13061e0732b02e06c3823ee1d9d9
Author: mbstadler <stadler.michael@gmail.com>
Date: 2026-07-29 17:53:41 +0200
Commit message:
Commit: 9b802c5f2dbf13061e0732b02e06c3823ee1d9d9
Author: mbstadler <stadler.michael@gmail.com>
Date: 2026-07-29 17:53:41 +0200
Commit message:
bump version Co-authored-by: Charlotte Soneson <charlottesoneson@gmail.com> Co-authored-by: Michael Stadler <stadler.michael@gmail.com>
Package: QuasR
Commit: 058ace1ba23b87e1dafaf432b7d142293ca5c3ab
Author: mbstadler <stadler.michael@gmail.com>
Date: 2026-07-29 17:53:33 +0200
Commit message:
Commit: 058ace1ba23b87e1dafaf432b7d142293ca5c3ab
Author: mbstadler <stadler.michael@gmail.com>
Date: 2026-07-29 17:53:33 +0200
Commit message:
fix ShortRead package link Co-authored-by: Charlotte Soneson <charlottesoneson@gmail.com> Co-authored-by: Michael Stadler <stadler.michael@gmail.com>
Package: QuasR
Commit: cb65ceecb2b24dc0d6c1f18b800ac18a3ada3ae9
Author: mbstadler <stadler.michael@gmail.com>
Date: 2026-07-29 17:53:15 +0200
Commit message:
Commit: cb65ceecb2b24dc0d6c1f18b800ac18a3ada3ae9
Author: mbstadler <stadler.michael@gmail.com>
Date: 2026-07-29 17:53:15 +0200
Commit message:
update roxygen version and fix now unsupported multiline expressions Co-authored-by: Charlotte Soneson <charlottesoneson@gmail.com> Co-authored-by: Michael Stadler <stadler.michael@gmail.com>
Package: QuasR
Commit: 860ec1395581a8028a8c8fbe3a34042ea86eb852
Author: mbstadler <stadler.michael@gmail.com>
Date: 2026-04-29 16:49:11 +0200
Commit message:
Commit: 860ec1395581a8028a8c8fbe3a34042ea86eb852
Author: mbstadler <stadler.michael@gmail.com>
Date: 2026-04-29 16:49:11 +0200
Commit message:
Merge remote-tracking branch 'upstream/devel' into devel
Package: QuasR
Commit: 23fb69db867c767926d7ca847113f88049f97d4b
Author: mbstadler <stadler.michael@gmail.com>
Date: 2025-10-30 14:41:08 +0100
Commit message:
Commit: 23fb69db867c767926d7ca847113f88049f97d4b
Author: mbstadler <stadler.michael@gmail.com>
Date: 2025-10-30 14:41:08 +0100
Commit message:
Merge remote-tracking branch 'upstream/devel' into devel
Package: QuasR
Commit: 4887a1039affdf532f3b35197d6022194fbfb49f
Author: Michael Stadler <stadler.michael@gmail.com>
Date: 2025-06-30 07:53:57 +0200
Commit message:
Commit: 4887a1039affdf532f3b35197d6022194fbfb49f
Author: Michael Stadler <stadler.michael@gmail.com>
Date: 2025-06-30 07:53:57 +0200
Commit message:
add cache-version to GHA for easy cache invalidation
Package: TCC
Commit: 1e63df8b5380ca8514f21c4f5160cbc2533054a6
Author: jsun <sun@bitdessin.dev>
Date: 2026-07-30 14:39:54 +0900
Commit message:
Commit: 1e63df8b5380ca8514f21c4f5160cbc2533054a6
Author: jsun <sun@bitdessin.dev>
Date: 2026-07-30 14:39:54 +0900
Commit message:
Merge remote-tracking branch 'upstream/devel'
Package: TCC
Commit: e5bb9aeb142b1fd7ccb0f21e89c56c96c60b836d
Author: jsun <sun@bitdessin.dev>
Date: 2026-07-30 14:32:57 +0900
Commit message:
Commit: e5bb9aeb142b1fd7ccb0f21e89c56c96c60b836d
Author: jsun <sun@bitdessin.dev>
Date: 2026-07-30 14:32:57 +0900
Commit message:
add startup message.
Package: rprimer
Commit: 32bb6975b5f64fe030c001ef44355fe3b6c70778
Author: Hervé Pagès <hpages.on.github@gmail.com>
Date: 2026-07-29 17:18:36 -0700
Commit message:
Commit: 32bb6975b5f64fe030c001ef44355fe3b6c70778
Author: Hervé Pagès <hpages.on.github@gmail.com>
Date: 2026-07-29 17:18:36 -0700
Commit message:
rprimer 1.17.1: Package now needs to depend on MultipleAlignment
Package: toppgene
Commit: 24c42a96449bb96fa1e636f88bc5411a2b878474
Author: Pariksheet Nanda <pan79@pitt.edu>
Date: 2026-07-29 18:35:04 -0400
Commit message:
Commit: 24c42a96449bb96fa1e636f88bc5411a2b878474
Author: Pariksheet Nanda <pan79@pitt.edu>
Date: 2026-07-29 18:35:04 -0400
Commit message:
REL: Fix subset() dispatch of CategoriesDataFrame
Package: toppgene
Commit: 810c3c18b72e32051929c354edafc6824e352533
Author: Pariksheet Nanda <pan79@pitt.edu>
Date: 2026-07-29 18:17:52 -0400
Commit message:
Commit: 810c3c18b72e32051929c354edafc6824e352533
Author: Pariksheet Nanda <pan79@pitt.edu>
Date: 2026-07-29 18:17:52 -0400
Commit message:
DEV: Satisfy roxygen2 multiline @importFrom complaint
Package: DECIPHER
Commit: 2c6469dbe1bc7af8e4fb85c4ba893aa47a368832
Author: Hervé Pagès <hpages.on.github@gmail.com>
Date: 2026-07-29 15:10:23 -0700
Commit message:
Commit: 2c6469dbe1bc7af8e4fb85c4ba893aa47a368832
Author: Hervé Pagès <hpages.on.github@gmail.com>
Date: 2026-07-29 15:10:23 -0700
Commit message:
DECIPHER 3.9.1: Add new MultipleAlignment package to Depends
Package: geneplast
Commit: 876247c04bf396f10794d88aa978a4f3cc75e3b4
Author: Mauro Castro <mauro.a.castro@gmail.com>
Date: 2026-07-29 18:08:15 -0300
Commit message:
Commit: 876247c04bf396f10794d88aa978a4f3cc75e3b4
Author: Mauro Castro <mauro.a.castro@gmail.com>
Date: 2026-07-29 18:08:15 -0300
Commit message:
minor updates
Package: VDJdive
Commit: 5674c1c9cfa8d85016eedfa63d3639a8ffcae1a0
Author: Kelly Street <street.kelly@gmail.com>
Date: 2026-07-29 13:26:28 -0700
Commit message:
Commit: 5674c1c9cfa8d85016eedfa63d3639a8ffcae1a0
Author: Kelly Street <street.kelly@gmail.com>
Date: 2026-07-29 13:26:28 -0700
Commit message:
minor updates fixing issues identified by devtools::check and BiocCheck. Re-ran biocthis::use_bioc_github_action
Package: MLP
Commit: 810acb72b2f3b2317979a635424d3207f378dfc3
Author: lcougnaud <lcougnaud@openanalytics.eu>
Date: 2026-07-29 22:21:37 +0200
Commit message:
Commit: 810acb72b2f3b2317979a635424d3207f378dfc3
Author: lcougnaud <lcougnaud@openanalytics.eu>
Date: 2026-07-29 22:21:37 +0200
Commit message:
KEGG gene set description: KEGG list API update: organism -> genome
Package: rhdf5
Commit: 0c019282940af1e3541eabe74272604deab80e69
Author: Michael Sumner <mdsumner@gmail.com>
Date: 2026-07-30 06:36:09 +1000
Commit message:
Commit: 0c019282940af1e3541eabe74272604deab80e69
Author: Michael Sumner <mdsumner@gmail.com>
Date: 2026-07-30 06:36:09 +1000
Commit message:
add h5getAllChunkInfo (#217) Co-authored-by: Hugo Gruson <git@hugogruson.fr>
Package: Biostrings
Commit: bf137292de3dbee52700221067f0170522b9b09f
Author: Hervé Pagès <hpages.on.github@gmail.com>
Date: 2026-07-29 13:21:11 -0700
Commit message:
Commit: bf137292de3dbee52700221067f0170522b9b09f
Author: Hervé Pagès <hpages.on.github@gmail.com>
Date: 2026-07-29 13:21:11 -0700
Commit message:
Biostrings 2.81.6: Tweak Biostrings:::.call_fun_in_MultipleAlignment
Package: CNEr
Commit: 839086d26af038d3775b7ad6d345813b85c7b362
Author: Hervé Pagès <hpages.on.github@gmail.com>
Date: 2026-07-29 12:22:41 -0700
Commit message:
Commit: 839086d26af038d3775b7ad6d345813b85c7b362
Author: Hervé Pagès <hpages.on.github@gmail.com>
Date: 2026-07-29 12:22:41 -0700
Commit message:
CNEr 1.49.1: Fix imports
Package: Rhisat2
Commit: 05a1f28550565a07556a669f95d3c5613e9964eb
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2026-07-29 20:06:55 +0200
Commit message:
Commit: 05a1f28550565a07556a669f95d3c5613e9964eb
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2026-07-29 20:06:55 +0200
Commit message:
Fix indentation
Package: Rhisat2
Commit: e181252a996467ca99f86cb48ed94a6996de202c
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2026-07-29 20:05:12 +0200
Commit message:
Commit: e181252a996467ca99f86cb48ed94a6996de202c
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2026-07-29 20:05:12 +0200
Commit message:
Fix indentation
Package: Rhisat2
Commit: 57bd9e1042cd755413242a0d642030c0d8ad9f64
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2026-07-29 20:02:50 +0200
Commit message:
Commit: 57bd9e1042cd755413242a0d642030c0d8ad9f64
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2026-07-29 20:02:50 +0200
Commit message:
Don't fail on BiocCheck
Package: Rhisat2
Commit: 3e83f3c9afb5ac7578381142bb45b6868cce89d9
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2026-07-29 19:57:54 +0200
Commit message:
Commit: 3e83f3c9afb5ac7578381142bb45b6868cce89d9
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2026-07-29 19:57:54 +0200
Commit message:
Try moving BiocCheck to the very beginning of the workflow
Package: Rhisat2
Commit: 39fd50316632f418c46724634c42fb60ff938949
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2026-07-29 18:24:18 +0200
Commit message:
Commit: 39fd50316632f418c46724634c42fb60ff938949
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2026-07-29 18:24:18 +0200
Commit message:
Move BiocCheck earlier in the GHA workflow
Package: Rhisat2
Commit: c3e69fc6fd48d60df6f2a8c540472b27076c3e2d
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2026-07-29 18:24:05 +0200
Commit message:
Commit: c3e69fc6fd48d60df6f2a8c540472b27076c3e2d
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2026-07-29 18:24:05 +0200
Commit message:
Update actions
Package: Rhisat2
Commit: eafd82c40fd4eed114e3b5194af4527701cb5103
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2026-07-29 17:59:04 +0200
Commit message:
Commit: eafd82c40fd4eed114e3b5194af4527701cb5103
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2026-07-29 17:59:04 +0200
Commit message:
Add workflow_dispatch trigger Co-authored-by: Michael Stadler <stadler.michael@gmail.com> Co-authored-by: Charlotte Soneson <charlottesoneson@gmail.com>
Package: Rhisat2
Commit: 79f131971447740aa7298163a3bd612c1f541743
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2026-07-29 17:49:12 +0200
Commit message:
Commit: 79f131971447740aa7298163a3bd612c1f541743
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2026-07-29 17:49:12 +0200
Commit message:
Remove Archs: field, update roxygen version Co-authored-by: Michael Stadler <stadler.michael@gmail.com> Co-authored-by: Charlotte Soneson <charlottesoneson@gmail.com>
Package: Rhisat2
Commit: 550e718427db7d958980e4e4a4d2bccc1ae707be
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2026-07-29 17:48:55 +0200
Commit message:
Commit: 550e718427db7d958980e4e4a4d2bccc1ae707be
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2026-07-29 17:48:55 +0200
Commit message:
Bump version Co-authored-by: Michael Stadler <stadler.michael@gmail.com> Co-authored-by: Charlotte Soneson <charlottesoneson@gmail.com>
Package: Rhisat2
Commit: 3ac7fd001a796aad1082095fb2c015d397832c6e
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2026-07-29 17:48:30 +0200
Commit message:
Commit: 3ac7fd001a796aad1082095fb2c015d397832c6e
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2026-07-29 17:48:30 +0200
Commit message:
Make Makefile consistent with Makefile.win for SSE_FLAG and SIMDE_DEF definitions Co-authored-by: Michael Stadler <stadler.michael@gmail.com> Co-authored-by: Charlotte Soneson <charlottesoneson@gmail.com>
Package: Rhisat2
Commit: d09bc6bbca2f89e86aa8ec337ae50c677ad5f67d
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2026-07-29 17:32:28 +0200
Commit message:
Commit: d09bc6bbca2f89e86aa8ec337ae50c677ad5f67d
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2026-07-29 17:32:28 +0200
Commit message:
Merge pull request #7 from jeroen/fix-arm64-msse2 Do not pass -msse2 on Windows ARM64 (aarch64)
Package: Rhisat2
Commit: 5ad5fbaa0b8eb98627224ee74c898a790deb7ec8
Author: Jeroen Ooms <jeroenooms@gmail.com>
Date: 2026-07-29 13:41:03 +0200
Commit message:
Commit: 5ad5fbaa0b8eb98627224ee74c898a790deb7ec8
Author: Jeroen Ooms <jeroenooms@gmail.com>
Date: 2026-07-29 13:41:03 +0200
Commit message:
Do not pass -msse2 on Windows ARM64 (aarch64)
Package: Rhisat2
Commit: 2f02834de7d6990e542fe2f6cf6826e4f506f50e
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2026-04-28 19:51:14 +0200
Commit message:
Commit: 2f02834de7d6990e542fe2f6cf6826e4f506f50e
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2026-04-28 19:51:14 +0200
Commit message:
Merge remote-tracking branch 'upstream/devel' into devel
Package: Rhisat2
Commit: ca97d6373d09420341cb953aa93fdaf8158990c9
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2025-10-29 20:18:44 +0100
Commit message:
Commit: ca97d6373d09420341cb953aa93fdaf8158990c9
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2025-10-29 20:18:44 +0100
Commit message:
Merge remote-tracking branch 'upstream/devel' into devel
Package: Rhisat2
Commit: 6ac9a58066edaf26342d98142cb7bc02a303978b
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2025-07-18 14:20:17 +0200
Commit message:
Commit: 6ac9a58066edaf26342d98142cb7bc02a303978b
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2025-07-18 14:20:17 +0200
Commit message:
Also install GenomicFeatures (GHA)
Package: Rhisat2
Commit: 3a1bc23f91ac67b61a0d9e57584ca068a68a8898
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2025-07-18 14:07:52 +0200
Commit message:
Commit: 3a1bc23f91ac67b61a0d9e57584ca068a68a8898
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2025-07-18 14:07:52 +0200
Commit message:
More packages installed from source on GHA
Package: Rhisat2
Commit: 2c86b35a01a2bbbfd1f1bfe872333fc452cc9c50
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2025-07-18 13:58:44 +0200
Commit message:
Commit: 2c86b35a01a2bbbfd1f1bfe872333fc452cc9c50
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2025-07-18 13:58:44 +0200
Commit message:
Install also GenomicRanges in GHA
Package: Rhisat2
Commit: 40b5c3206f045a96d59440c6bb768fd88fcec0b7
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2025-07-18 13:47:07 +0200
Commit message:
Commit: 40b5c3206f045a96d59440c6bb768fd88fcec0b7
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2025-07-18 13:47:07 +0200
Commit message:
Fix typo
Package: Rhisat2
Commit: 9be1fa490e68d4cc23f17aaabef9e8a7d53fc40d
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2025-07-18 13:41:41 +0200
Commit message:
Commit: 9be1fa490e68d4cc23f17aaabef9e8a7d53fc40d
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2025-07-18 13:41:41 +0200
Commit message:
Read genes.gtf to see what the problem is
Package: Rhisat2
Commit: 36b78bf6782d2aab2a4a69d070645842dbe23be1
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2025-07-18 13:18:31 +0200
Commit message:
Commit: 36b78bf6782d2aab2a4a69d070645842dbe23be1
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2025-07-18 13:18:31 +0200
Commit message:
Try force-installing txdbmaker from source on GHA
Package: Rhisat2
Commit: b603a6210e7a8beaf84f1ac9e0e8b088254906c8
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2025-04-16 09:15:12 +0200
Commit message:
Commit: b603a6210e7a8beaf84f1ac9e0e8b088254906c8
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2025-04-16 09:15:12 +0200
Commit message:
Merge remote-tracking branch 'upstream/devel' into devel
Package: Rhisat2
Commit: 946307de7a29e430dd74024fb04b3fd23b26efc6
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2025-02-21 09:44:58 +0100
Commit message:
Commit: 946307de7a29e430dd74024fb04b3fd23b26efc6
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2025-02-21 09:44:58 +0100
Commit message:
Update upload-artifact action
Package: dmGsea
Commit: d1a2f8a69801a7785673f7e3d6361ffe52fa25de
Author: xuz1 <xuz@niehs.nih.gov>
Date: 2026-07-29 14:03:37 -0400
Commit message:
Commit: d1a2f8a69801a7785673f7e3d6361ffe52fa25de
Author: xuz1 <xuz@niehs.nih.gov>
Date: 2026-07-29 14:03:37 -0400
Commit message:
bugfix Signed-off-by: xuz1 <xuz@niehs.nih.gov>
Package: PhyloProfile
Commit: 8df5d6392196b01378e8158136aa8489699563a1
Author: trvinh <trvinh@gmail.com>
Date: 2026-07-29 20:00:19 +0200
Commit message:
Commit: 8df5d6392196b01378e8158136aa8489699563a1
Author: trvinh <trvinh@gmail.com>
Date: 2026-07-29 20:00:19 +0200
Commit message:
removed Rfast
Package: pathlinkR
Commit: 70667b7424b6851298854555b25c821cd7ba7abd
Author: Travis Blimkie <travis.m.blimkie@gmail.com>
Date: 2026-07-28 13:52:39 -0700
Commit message:
Commit: 70667b7424b6851298854555b25c821cd7ba7abd
Author: Travis Blimkie <travis.m.blimkie@gmail.com>
Date: 2026-07-28 13:52:39 -0700
Commit message:
Changed p value fill limit calculation to address issue #21
Package: pathlinkR
Commit: f74c5e8a64275bee733dbf8e2d725d4bb91f554f
Author: Travis <travis.m.blimkie@gmail.com>
Date: 2026-07-20 11:14:01 -0700
Commit message:
Commit: f74c5e8a64275bee733dbf8e2d725d4bb91f554f
Author: Travis <travis.m.blimkie@gmail.com>
Date: 2026-07-20 11:14:01 -0700
Commit message:
Update test-coverage.yaml to add token
Package: scrapbook
Commit: a9853bf98c6bb732fb4e21b0e2574a51b8d0fa28
Author: LTLA <infinite.monkeys.with.keyboards@gmail.com>
Date: 2026-07-30 02:49:56 +1000
Commit message:
Commit: a9853bf98c6bb732fb4e21b0e2574a51b8d0fa28
Author: LTLA <infinite.monkeys.with.keyboards@gmail.com>
Date: 2026-07-30 02:49:56 +1000
Commit message:
Typo fix for Kobak citation.
Package: gDRutils
Commit: 1be3f77bab5c9619267fa9596f720856782c883e
Author: darsoo <daro.scig@gmail.com>
Date: 2026-07-29 18:13:00 +0200
Commit message:
Commit: 1be3f77bab5c9619267fa9596f720856782c883e
Author: darsoo <daro.scig@gmail.com>
Date: 2026-07-29 18:13:00 +0200
Commit message:
Merge pull request #195 from gdrplatform/GDR-3504 Gdr 3504
Package: gDRutils
Commit: 4b9dc3de658b2eff51e33a28f8abefd9dae709b3
Author: Dariusz Scigocki <daro.scig@gmail.com>
Date: 2026-07-29 15:48:39 +0200
Commit message:
Commit: 4b9dc3de658b2eff51e33a28f8abefd9dae709b3
Author: Dariusz Scigocki <daro.scig@gmail.com>
Date: 2026-07-29 15:48:39 +0200
Commit message:
fix: simplify experiment_md assignment by removing unnecessary if
Package: gDRutils
Commit: 1c1bda551a41c43a054816f04a7731fd55963689
Author: Dariusz Scigocki <daro.scig@gmail.com>
Date: 2026-07-29 15:46:46 +0200
Commit message:
Commit: 1c1bda551a41c43a054816f04a7731fd55963689
Author: Dariusz Scigocki <daro.scig@gmail.com>
Date: 2026-07-29 15:46:46 +0200
Commit message:
test: verify experiment_md is always a list regardless of input
Package: gDRutils
Commit: 00e14ceb491f6a5f18c2eb08365dbc360a7de08b
Author: Dariusz Scigocki <daro.scig@gmail.com>
Date: 2026-07-29 15:46:46 +0200
Commit message:
Commit: 00e14ceb491f6a5f18c2eb08365dbc360a7de08b
Author: Dariusz Scigocki <daro.scig@gmail.com>
Date: 2026-07-29 15:46:46 +0200
Commit message:
chore: bump version to 1.11.8 and update NEWS.md
Package: gDRutils
Commit: b4022e2787551b67b3fecae3cd04a3ed7c08389c
Author: Dariusz Scigocki <daro.scig@gmail.com>
Date: 2026-07-29 15:46:46 +0200
Commit message:
Commit: b4022e2787551b67b3fecae3cd04a3ed7c08389c
Author: Dariusz Scigocki <daro.scig@gmail.com>
Date: 2026-07-29 15:46:46 +0200
Commit message:
fix: always return list from split_SE_components for experiment_md Previously as.data.frame() was used, which produced an empty data.frame(0 cols, 0 rows) when no constant columns exist. Downstream is.list() checks passed (data.frame inherits from list) but $-assignment then crashed: Error in `$<-.data.frame`(*tmp*, unix_id, value = ""): replacement has 1 row, data has 0 Additionally, when constant_cols is non-empty the result was a data.frame, making experiment_md inconsistently typed depending on the input. Replace with as.list() to always return a consistently typed named list, empty or not.
Package: Gviz
Commit: 2132e60faee98057a4ff849b6738b44e104060ea
Author: Robert Ivánek <robert.ivanek@unibas.ch>
Date: 2026-07-29 18:11:37 +0200
Commit message:
Commit: 2132e60faee98057a4ff849b6738b44e104060ea
Author: Robert Ivánek <robert.ivanek@unibas.ch>
Date: 2026-07-29 18:11:37 +0200
Commit message:
Merge remote-tracking branch 'upstream/devel' into devel merged
Package: Gviz
Commit: 26ea19fae37edaddf0e790b3d5514155ce2fd8be
Author: Robert Ivánek <robert.ivanek@unibas.ch>
Date: 2025-01-23 08:59:31 +0100
Commit message:
Commit: 26ea19fae37edaddf0e790b3d5514155ce2fd8be
Author: Robert Ivánek <robert.ivanek@unibas.ch>
Date: 2025-01-23 08:59:31 +0100
Commit message:
Updated workflows to devel branch.
Package: Rbowtie
Commit: 7ca814fdd080e87c2914719eabf777c7454b725f
Author: mbstadler <stadler.michael@gmail.com>
Date: 2026-07-29 16:49:03 +0200
Commit message:
Commit: 7ca814fdd080e87c2914719eabf777c7454b725f
Author: mbstadler <stadler.michael@gmail.com>
Date: 2026-07-29 16:49:03 +0200
Commit message:
update GHA to not use depreciated versions Co-authored-by: Charlotte Soneson <charlottesoneson@gmail.com> Co-authored-by: Michael Stadler <stadler.michael@gmail.com>
Package: Rbowtie
Commit: 1b806da7e359aefacc7c68c7d8f17fe791c68924
Author: mbstadler <stadler.michael@gmail.com>
Date: 2026-07-29 16:39:55 +0200
Commit message:
Commit: 1b806da7e359aefacc7c68c7d8f17fe791c68924
Author: mbstadler <stadler.michael@gmail.com>
Date: 2026-07-29 16:39:55 +0200
Commit message:
remove redundant Maintainer field Co-authored-by: Charlotte Soneson <charlottesoneson@gmail.com> Co-authored-by: Michael Stadler <stadler.michael@gmail.com>
Package: Rbowtie
Commit: 9ea6de93bcf2caf151981a840e8240b1011139b2
Author: mbstadler <stadler.michael@gmail.com>
Date: 2026-07-29 16:31:39 +0200
Commit message:
Commit: 9ea6de93bcf2caf151981a840e8240b1011139b2
Author: mbstadler <stadler.michael@gmail.com>
Date: 2026-07-29 16:31:39 +0200
Commit message:
bump version Co-authored-by: Charlotte Soneson <charlottesoneson@gmail.com> Co-authored-by: Michael Stadler <stadler.michael@gmail.com>
Package: Rbowtie
Commit: 74f133b082aae51bf380dcbceedd457c8219406a
Author: mbstadler <stadler.michael@gmail.com>
Date: 2026-07-29 16:30:28 +0200
Commit message:
Commit: 74f133b082aae51bf380dcbceedd457c8219406a
Author: mbstadler <stadler.michael@gmail.com>
Date: 2026-07-29 16:30:28 +0200
Commit message:
use logical AND instead of bitwise AND for logical comparisons Co-authored-by: Charlotte Soneson <charlottesoneson@gmail.com> Co-authored-by: Michael Stadler <stadler.michael@gmail.com>
Package: Rbowtie
Commit: 62ba92e08e1396e2a8ba51cd53211baee1dfe58a
Author: mbstadler <stadler.michael@gmail.com>
Date: 2026-07-29 16:24:49 +0200
Commit message:
Commit: 62ba92e08e1396e2a8ba51cd53211baee1dfe58a
Author: mbstadler <stadler.michael@gmail.com>
Date: 2026-07-29 16:24:49 +0200
Commit message:
fix typo in documentation Co-authored-by: Charlotte Soneson <charlottesoneson@gmail.com> Co-authored-by: Michael Stadler <stadler.michael@gmail.com>
Package: Rbowtie
Commit: 23c2d1aef2d9c5576a02596a3ad49902b46f9b03
Author: mbstadler <stadler.michael@gmail.com>
Date: 2026-07-29 16:22:45 +0200
Commit message:
Commit: 23c2d1aef2d9c5576a02596a3ad49902b46f9b03
Author: mbstadler <stadler.michael@gmail.com>
Date: 2026-07-29 16:22:45 +0200
Commit message:
use consistent logic in Makefile and Makefile.win Co-authored-by: Charlotte Soneson <charlottesoneson@gmail.com> Co-authored-by: Michael Stadler <stadler.michael@gmail.com>
Package: Rbowtie
Commit: ed27d04c055a453c094610c986b823f17578bce1
Author: Michael Stadler <stadler.michael@gmail.com>
Date: 2026-07-29 16:21:16 +0200
Commit message:
Commit: ed27d04c055a453c094610c986b823f17578bce1
Author: Michael Stadler <stadler.michael@gmail.com>
Date: 2026-07-29 16:21:16 +0200
Commit message:
Merge pull request #5 from jeroen/devel Remove CFLAGS from C++ build
Package: Rbowtie
Commit: e91ea857d07541854883c5f69bc291e35337876f
Author: Jeroen Ooms <jeroenooms@gmail.com>
Date: 2026-07-29 12:35:35 +0200
Commit message:
Commit: e91ea857d07541854883c5f69bc291e35337876f
Author: Jeroen Ooms <jeroenooms@gmail.com>
Date: 2026-07-29 12:35:35 +0200
Commit message:
Fixes for Windows ARM64 and others
Package: igvShiny
Commit: 6bfd3b1ec1bae9f5214c373954a754e59edc8ef8
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-29 16:04:15 +0200
Commit message:
Commit: 6bfd3b1ec1bae9f5214c373954a754e59edc8ef8
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-29 16:04:15 +0200
Commit message:
Script the Connect re-pin and warn when the live demo falls behind (#157) * docs: script the Connect re-pin and write down the deploy routine app.R runs the demo out of the installed package, so manifest.json's pinned commit decides what the public demo shows - and moving that pin by hand means keeping six fields in step: RemoteSha, GithubSHA1, the recorded Version and the two file checksums. bump-pin.sh does all six from one argument, defaulting to origin/master, and refuses an abbreviated sha (the GitHub API answers those with silence, which reads like a missing commit). --check reports drift without touching anything and exits non-zero, so it doubles as a post-merge reminder that the live demo is behind. Also re-pin to 559c5c8 (1.9.35), the commit that rebuilt the demos: the manifest still pointed at 1.9.25. Related: #64 * ci: warn when the Connect demo pin falls behind master The pin gap is invisible by construction: CI stays green, the repo is correct, only the live app is stale - which is how manifest.json ended up ten versions behind. A push to master that touches the demos now runs bump-pin.sh --check and files a single reminder issue, closing it once the pin catches up. It deploys nothing. Republishing stays a click in Connect Cloud. Related: #64 * fix: define the Connect pin drift by what the app installs, not by sha equality Connect republishes on every master change by itself, so the manual step is the pin, not the republish - the docs said otherwise. The check was worse than wrong: requiring pin == HEAD is false immediately after every merge, including the merge that moves the pin, so the workflow would have filed a drift issue against its own landing commit. Compare the pinned commit with master over R/, inst/ and DESCRIPTION instead - the only paths that reach the served package - and stay quiet when they match. Verified against both ends: the old 1.9.25 pin reports 33 changed files, while the merge of this branch reports none. Related: #64 * fix: separate the pin-check failure modes and check every manifest invariant Review notes on this branch, all four valid: - the workflow filed "the demo is behind" for any non-zero exit, including the script failing to run at all (missing jq/gh, unknown commit, API error). Only exit 1 means drift now; anything above fails the job instead of lying quietly - --check looked at RemoteSha alone, so it passed a manifest whose README.md checksum was stale - which this branch had. It now verifies both sha fields, the recorded version and both file checksums, and the stale checksum is fixed - drop base64 from the version lookup: -d/-D differs between GNU and macOS. The raw media type returns DESCRIPTION directly - add a concurrency group; two runs could both find no open issue and both file one --check reads the manifest against master and cannot observe what Connect has deployed; the docs claimed otherwise. The footer version stays the one place the deployment itself is verified. Related: #64
Package: igvShiny
Commit: 559c5c8fa07d410b8feb42e1c215574128f0a1c7
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-29 15:36:48 +0200
Commit message:
Commit: 559c5c8fa07d410b8feb42e1c215574128f0a1c7
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-29 15:36:48 +0200
Commit message:
Rebuild the demo apps on bslib and drop the Connect fork (#156)
* refactor: rebuild the demo apps on bslib and drop the Connect fork (#64)
The 15 apps in inst/demos/ were a decade of accretion: shinyUI(fluidPage()),
inline style="border: 1px solid blue", printf() as logging, hardcoded ports,
commented-out dead buttons. demo/posit-connect/app.R was a hand-maintained
bslib copy of igvShinyDemo.R that drifted from it on every new loader.
Replace both problems with one flagship and six single-topic apps:
igvShinyDemo.R most of the API, the one the Connect deploy serves
tiny.R a genome and a widget, nothing else
genomes.R stock / localFiles / http in one radio button
gwas.R loadGwasTrack vs GWASTrack, data.frame vs url
local-data.R the *FromLocalData loaders (bam, vcf, gff3)
modules.R moduleServer + ns(), matching the vignette
two-instances.R two widgets, each reporting its own region
demo/posit-connect/app.R now runs the flagship out of the installed package,
so there is no second copy to keep in sync. The flagship deliberately calls no
*FromLocalData loader, which is what keeps Rsamtools, GenomicAlignments and
VariantAnnotation out of the cloud deploy - they are demoed by local-data.R.
Since the app comes from the package, manifest.json's pinned commit now
decides which demo is live; README.md says so.
Two loaders had no demo at all: loadSpliceJunctionTrackFromURL (#103) is shown
over its sample's coverage track, the pairing a sashimi plot is wanted for, and
removeTracksByName gets a name field next to the remove-all button.
Deleted rather than rewritten: the two cyjShiny interop apps (they demo
cyjShiny, not igvShiny), the duplicated customGenome pair and its customGenomes/
copy, groupAutoScale (the flagship autoscales), the two GWAS apps, the withVCF,
withModules, twoInstances, GFF3 and stockGenomes apps - all folded above - and
rsconnect.zip, a deploy artifact that had no business in git.
test-shinyApp.R keeps its GFF3 regression guard for the .tracksDir() 404 from
#132; it points at local-data.R now, with the button ids unchanged.
Related: #64
* fix: address the review notes on the rebuilt demos (#64)
- guard the Connect wrapper against an empty system.file(): a pin predating
the demo returned "", and shinyAppFile("") greys the page out silently
- hard-code the bed9 scores, so the demo does not draw different data on
every session
- feed chromLocDisplay from a reactiveVal instead of re-registering the
output inside two observers, and render it as text rather than html
Related: #64
Package: rhdf5filters
Commit: 28e27d629a10fcc97efe5f4c65527bae9793c91f
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-29 14:24:22 +0200
Commit message:
Commit: 28e27d629a10fcc97efe5f4c65527bae9793c91f
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-29 14:24:22 +0200
Commit message:
Bump version
Package: rhdf5filters
Commit: 047dabca502f76e7e6572981470643c85bfc2660
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-29 14:00:42 +0200
Commit message:
Commit: 047dabca502f76e7e6572981470643c85bfc2660
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-29 14:00:42 +0200
Commit message:
Add .gitattributes for LF R CMD check NOTE
Package: rhdf5filters
Commit: 0fcb57daf6ddac5e4efacae89050932aacb17a6a
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-29 14:00:24 +0200
Commit message:
Commit: 0fcb57daf6ddac5e4efacae89050932aacb17a6a
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-29 14:00:24 +0200
Commit message:
Install openssl on mac CI
Package: rhdf5filters
Commit: 06965765299976541e338993f1b65125ab74a84e
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-29 12:11:29 +0200
Commit message:
Commit: 06965765299976541e338993f1b65125ab74a84e
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-29 12:11:29 +0200
Commit message:
Run autoreconf
Package: rhdf5filters
Commit: ec85d0ee111fd4d8f69e313f48ca5b2048978106
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-29 13:22:54 +0200
Commit message:
Commit: ec85d0ee111fd4d8f69e313f48ca5b2048978106
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-29 13:22:54 +0200
Commit message:
Update bundled autoconf-archive utils
Package: rhdf5filters
Commit: b5b21faf29320175266bba694b47aa0920449dcf
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-29 12:10:33 +0200
Commit message:
Commit: b5b21faf29320175266bba694b47aa0920449dcf
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-29 12:10:33 +0200
Commit message:
Remove HAVE_BZ2 var
Package: rhdf5filters
Commit: 3e517c779c8f457862c2b6adcab20d71c242bd3e
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-29 12:09:21 +0200
Commit message:
Commit: 3e517c779c8f457862c2b6adcab20d71c242bd3e
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-29 12:09:21 +0200
Commit message:
Remove references to C99
Package: DiffBind
Commit: 050b5bd3cd40c1a1255b772ff2faca26970390fe
Author: Rory Stark <bioconductor@starkhome.com>
Date: 2026-07-29 11:43:46 +0100
Commit message:
Commit: 050b5bd3cd40c1a1255b772ff2faca26970390fe
Author: Rory Stark <bioconductor@starkhome.com>
Date: 2026-07-29 11:43:46 +0100
Commit message:
3.23.5: preserve minCount through counting and reconstruction Two related fixes so a user-supplied minCount in dba.count() is no longer silently lost: * counts.R: the summit re-centering recursive pv.counts() call did not forward minCount, so with the default summits the returned object got minCount = 0 regardless of the requested value. Now forwarded. * model.R: pv.vectors() had a copy-paste typo (pv$minCount <- pv$minCount, reading from the just-rebuilt object instead of the saved local), dropping minCount on every reconstruction. Since pv.vectors() underlies many operations, this is now preserved consistently. Add tests/testthat/test_minCount.R covering pv.vectors() preservation (runs on the bundled counted dataset, no BAMs). Verified: default minCount=0 analysis is bit-identical to pre-fix output (no change for existing users); a user-set minCount now survives count, normalize, contrast and analyze.
Package: igvShiny
Commit: 73a28e261f81a643602a9e43f5a4cdb18637cfdf
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-29 13:51:08 +0200
Commit message:
Commit: 73a28e261f81a643602a9e43f5a4cdb18637cfdf
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-29 13:51:08 +0200
Commit message:
docs: record the tair10 gene track rename in NEWS (#143) (#155)
Before #143 the tair10 config carried its own "Genes TAIR10" track. The
registry entry supplies the annotation as "RefSeq All", so the track is
still there under a different name and removeTracksByName("Genes TAIR10")
in user code now matches nothing, without an error or a warning. hg19
losing Gencode v18 made NEWS; this did not.
The comment next to the config also overstated the change, implying data
has to be renamed to RefSeq accessions. The registry entry carries an
aliasURL, so chr1 and 1 both resolve; only the displayed name changes.
Verified in the browser on the bundled igv.js 3.8.4 with a track named in
both spellings.
Package: igvShiny
Commit: abd4d0e61c212635324c2df07516fa1da9cea413
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-29 13:39:53 +0200
Commit message:
Commit: abd4d0e61c212635324c2df07516fa1da9cea413
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-29 13:39:53 +0200
Commit message:
fix: report the locus start as 1-based in currentGenomicRegion (#126) (#154)
The locuschange handler emitted the reference frame start untouched, but
that value is 0-based, while browser.search() reads its input as 1-based
and subtracts one. An app that reported a region and later sent it back
through showGenomicRegion therefore lost a base per round trip, drifting
left by one on every cycle rather than once.
Emit floor(start)+1 and leave the rest of the format alone: no thousands
separators, no display chromosome names. Both would change what user code
parses, and as.integer("7,276") returns NA with a warning rather than an
error, so a comma would break consumers silently.
The #126 test asserted only the chromosome prefix, so the drift passed
through it; it now pins the start.
Package: Rarr
Commit: c12035e6c9d2acd1282bcbd31864f08d3b8d4b54
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-29 13:07:23 +0200
Commit message:
Commit: c12035e6c9d2acd1282bcbd31864f08d3b8d4b54
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-29 13:07:23 +0200
Commit message:
Bump version
Package: Rarr
Commit: 2326c159c29b17d88b36a073a828a7a6decae02b
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-29 13:07:16 +0200
Commit message:
Commit: 2326c159c29b17d88b36a073a828a7a6decae02b
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-29 13:07:16 +0200
Commit message:
Document compilation fix in NEWS
Package: Rarr
Commit: 1044314163719a2aa97a45b40b6116fa7ea91d1e
Author: Jeroen Ooms <jeroenooms@gmail.com>
Date: 2026-07-29 12:04:08 +0200
Commit message:
Commit: 1044314163719a2aa97a45b40b6116fa7ea91d1e
Author: Jeroen Ooms <jeroenooms@gmail.com>
Date: 2026-07-29 12:04:08 +0200
Commit message:
Disable SSE2 on Windows arm64
Package: igvShiny
Commit: 0198e5cffbf1eb0f2239420ea81866934b411a7e
Author: Arkadiusz Gładki <arek@dobio.link>
Date: 2026-07-29 13:22:09 +0200
Commit message:
Commit: 0198e5cffbf1eb0f2239420ea81866934b411a7e
Author: Arkadiusz Gładki <arek@dobio.link>
Date: 2026-07-29 13:22:09 +0200
Commit message:
fix: skip attribution links in the external asset URL scan The scan keeps any URL whose last segment looks like a file, so adding igv.js.examples to its sources in #103 pulled in the tutorial link credited in tabs-bam.html. That host bot-blocks CI, answering both HEAD and the ranged GET with 403, which failed the job on master for a page no code fetches.
Package: igvShiny
Commit: 59cd07e20973102c553731d33d40b6eef35eb9bb
Author: Mateusz <gladkiimateusz@gmail.com>
Date: 2026-07-29 13:12:04 +0200
Commit message:
Commit: 59cd07e20973102c553731d33d40b6eef35eb9bb
Author: Mateusz <gladkiimateusz@gmail.com>
Date: 2026-07-29 13:12:04 +0200
Commit message:
feat: load a splice junction track from a bed url (#103) (#153) * feat: draw splice junctions from a bed url, the igv.js answer to #103 igv.js has no sashimi plot - grep for "sashimi" in the bundled 3.8.4 build returns nothing. What it has is SpliceJunctionTrack, drawn from a bed file of the shape STAR writes as SJ.out.tab, and a merged track to put it over coverage. #103 has been waiting since November on advice that describes desktop IGV instead. loadSpliceJunctionTrackFromURL() sends such a bed to the "junction" type, with indexed=false when no tabix index is given: igv.js otherwise guesses url + ".tbi" and fails on a file that is not there. The junction filters, thickness rules and labels reach igv.js through trackConfig, so they are added to .validIgvTrackOptions. Their names come from the 3.8.4 source, not from spliceJunctionTrack.html: that example still sets labelUniqueReadCount and four siblings, and no such option exists in the library any more - it reads labelWith/labelWithInParen. The example is corrected here too. Its three data files went 404 on s3.amazonaws.com/igv.org.demo, the same dead bucket as #143; upstream moved them to igvteam/igv-data. The scanner that would have caught this never looked at igv.js.examples, so the directory joins its scope - which surfaced five more dead URLs in two other examples, repointed or replaced by the stock genome the files themselves named as the alternative. The browser test serves its own bed fixture from 127.0.0.1 rather than adding another third-party host to the suite. * fix: treat an unusable indexURL as no index, not as JSON null A NULL indexURL survives list(), so shiny sent it as JSON null and the handler read .length off it. That throws: the track never loads and R sees nothing, the failure showing up only in the browser console. Same for a vector or an NA. Normalising in R keeps it off the wire, matching what .sanitizeTracks() already does for a track url. Raised by CodeRabbit on #153.
Package: igvShiny
Commit: 0b6b0c3c1a29cb963c8e955ceda31336ae9976fe
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-29 12:10:41 +0200
Commit message:
Commit: 0b6b0c3c1a29cb963c8e955ceda31336ae9976fe
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-29 12:10:41 +0200
Commit message:
feat: load a local cram file and its index into an alignment track (#102) (#151) * feat: load a local cram file and its index into an alignment track (#102) There are loaders for bam both from a url and from an R object, but cram only from a url: readGAlignments does not read cram, and no other bioconductor package does either. So this loader takes file paths rather than parsed data, links the cram and its crai into the directory shiny serves as "tracks", and points igv.js at the app-relative urls. The payload is the one loadCramTrackFromURL already sends, so the browser side needs no handler of its own. Alignment files run to gigabytes, hence a symlink where the filesystem allows one, a copy where it does not. * test: assert the staged crai separately and reject a cram without one (#102)
Package: gDRstyle
Commit: 984a92bb85c1bb08dc2c32c189b0f3bdd771fd70
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-29 11:06:39 +0200
Commit message:
Commit: 984a92bb85c1bb08dc2c32c189b0f3bdd771fd70
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-29 11:06:39 +0200
Commit message:
Merge pull request #101 from gdrplatform/GDR-3471 feat: add lintRmdDeps() — static check for unresolved Rmd function calls (GDR-3471)
Package: gDRstyle
Commit: 5a47f385df178f5646e1e4d7dc391317bc675310
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-29 09:56:50 +0200
Commit message:
Commit: 5a47f385df178f5646e1e4d7dc391317bc675310
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-29 09:56:50 +0200
Commit message:
ci: retrigger gdrgenesis status check
Package: gDRstyle
Commit: 4e370335cf7ce2426dc1a2082a2860cff0ef885c
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-28 11:23:59 +0200
Commit message:
Commit: 4e370335cf7ce2426dc1a2082a2860cff0ef885c
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-28 11:23:59 +0200
Commit message:
fix: add @importFrom data.table and utils::getParseData in rmd_linter.R — resolves R CMD check WARNING (GDR-3471)
Package: gDRstyle
Commit: b0543c263476cb17d3b8a31a5ae520a2a74a55bb
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-28 06:57:08 +0200
Commit message:
Commit: b0543c263476cb17d3b8a31a5ae520a2a74a55bb
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-28 06:57:08 +0200
Commit message:
ci: retrigger after gDRutils 1.11.6 merge
Package: gDRstyle
Commit: f2cc87dfe114ead3d7212c1738e51a54b4f6f344
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-27 11:40:10 +0200
Commit message:
Commit: f2cc87dfe114ead3d7212c1738e51a54b4f6f344
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-27 11:40:10 +0200
Commit message:
docs: add @keywords linter to lintRmdDeps so pkgdown finds it in reference index
Package: gDRstyle
Commit: 74a8a2849dd108c9cb828dac350672492068bee0
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-27 11:36:07 +0200
Commit message:
Commit: 74a8a2849dd108c9cb828dac350672492068bee0
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-27 11:36:07 +0200
Commit message:
ci: retrigger after gdrin MR!107 merge
Package: gDRstyle
Commit: c019228d9cd5dca341c39d805be4f0b603be6e8e
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-24 11:46:14 +0200
Commit message:
Commit: c019228d9cd5dca341c39d805be4f0b603be6e8e
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-24 11:46:14 +0200
Commit message:
style: address Janina review — character(1) → string in @param/@return, data.frame → data.table (GDR-3471)
Package: gDRstyle
Commit: 30fd6014bcfff36d190eaca6e9ec6e194ce01dad
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-23 07:11:45 +0200
Commit message:
Commit: 30fd6014bcfff36d190eaca6e9ec6e194ce01dad
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-23 07:11:45 +0200
Commit message:
style: replace non-ASCII em-dashes with ASCII hyphens in rmd_linter.R
Package: gDRstyle
Commit: 3ae6e108ff0d0e7e8e826660117046de47712433
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-22 22:17:52 +0200
Commit message:
Commit: 3ae6e108ff0d0e7e8e826660117046de47712433
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-22 22:17:52 +0200
Commit message:
style: fix paste_linter violations in rmd_linter.R (toString)
Package: gDRstyle
Commit: a34f3eeda0db621eaecfa2fdb3215368e0230bdb
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-22 20:08:55 +0200
Commit message:
Commit: a34f3eeda0db621eaecfa2fdb3215368e0230bdb
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-22 20:08:55 +0200
Commit message:
feat: add lintRmdDeps() — static check for unresolved Rmd function calls (GDR-3471)
Add gDRstyle::lintRmdDeps() to check Rmd report templates for function
calls that are not resolvable to any package loaded via library()/require()
or to the host package detected from the nearest DESCRIPTION file.
Key design points:
- AST-only name detection (getParseData) — no regex fallback that would
produce false positives from function default arguments
- Mustache {{param}} template syntax stripped before parsing
- Host package auto-detected by walking up directory tree (max 6 levels)
- Graceful degradation when optional packages are not installed
- data.table special tokens (.:= .N etc.) are excluded from checks
- CLI wrapper in inst/scripts/lint_rmd_deps.R for direct Rscript usage
Tests: 19 test cases covering all internal helpers and the public API.
Package: Gviz
Commit: 0b346b99f556354c2b8a9d7e17f68a02ae0f388a
Author: Hervé Pagès <hpages.on.github@gmail.com>
Date: 2026-07-28 17:58:00 -0700
Commit message:
Commit: 0b346b99f556354c2b8a9d7e17f68a02ae0f388a
Author: Hervé Pagès <hpages.on.github@gmail.com>
Date: 2026-07-28 17:58:00 -0700
Commit message:
Gviz 1.57.1: Resync with GenomicAlignments/cigarillo split cigarRangesAlongReferenceSpace() and sequenceLayer() have moved from GenomicAlignments to the new cigarillo package, and were renamed cigars_as_ranges_along_ref() and project_sequences(), respectively.
Package: ontoProc2
Commit: 1d4df64d4bcb3185438b721c6dd3116461ddeafb
Author: vjcitn <stvjc@channing.harvard.edu>
Date: 2026-07-28 20:13:45 -0400
Commit message:
Commit: 1d4df64d4bcb3185438b721c6dd3116461ddeafb
Author: vjcitn <stvjc@channing.harvard.edu>
Date: 2026-07-28 20:13:45 -0400
Commit message:
deal with issue 11 as server URLs change
Package: ontoProc2
Commit: 7a4d7b1537a293b837e876fb52644ac716096d4c
Author: vjcitn <stvjc@channing.harvard.edu>
Date: 2026-07-28 19:55:12 -0400
Commit message:
Commit: 7a4d7b1537a293b837e876fb52644ac716096d4c
Author: vjcitn <stvjc@channing.harvard.edu>
Date: 2026-07-28 19:55:12 -0400
Commit message:
Merge branch 'devel' of git.bioconductor.org:packages/ontoProc2 into devel
Package: ontoProc2
Commit: 33934c1fc38b2e4a2203be07ebeab7c4158618b1
Author: vjcitn <stvjc@channing.harvard.edu>
Date: 2026-07-28 19:54:18 -0400
Commit message:
Commit: 33934c1fc38b2e4a2203be07ebeab7c4158618b1
Author: vjcitn <stvjc@channing.harvard.edu>
Date: 2026-07-28 19:54:18 -0400
Commit message:
has jupyter, removes cruft
Package: S4Vectors
Commit: b4b3988d711af2fe3f4feb588c9d6a50ef7f06d3
Author: Hervé Pagès <hpages.on.github@gmail.com>
Date: 2026-07-28 16:32:33 -0700
Commit message:
Commit: b4b3988d711af2fe3f4feb588c9d6a50ef7f06d3
Author: Hervé Pagès <hpages.on.github@gmail.com>
Date: 2026-07-28 16:32:33 -0700
Commit message:
S4Vectors 0.51.6: S4Vectors:::anyMissing() is now defunct (was deprecated)
Package: Biobase
Commit: def16233048fa96b4f3aad4d0af5a9922818ed7d
Author: Hervé Pagès <hpages.on.github@gmail.com>
Date: 2026-07-28 16:32:39 -0700
Commit message:
Commit: def16233048fa96b4f3aad4d0af5a9922818ed7d
Author: Hervé Pagès <hpages.on.github@gmail.com>
Date: 2026-07-28 16:32:39 -0700
Commit message:
Biobase 2.73.2: anyMissing() is now defunct (was deprecated)
Package: plyxp
Commit: ed59c03253c70e86f7c7ddf5334b322174bbb51d
Author: jtlandis <jtlandis314@gmail.com>
Date: 2026-07-28 18:56:03 -0400
Commit message:
Commit: ed59c03253c70e86f7c7ddf5334b322174bbb51d
Author: jtlandis <jtlandis314@gmail.com>
Date: 2026-07-28 18:56:03 -0400
Commit message:
Style
Package: plyxp
Commit: fbd580f1e9263656784936f9d368ea644ade0c45
Author: jtlandis <jtlandis314@gmail.com>
Date: 2026-07-28 18:55:53 -0400
Commit message:
Commit: fbd580f1e9263656784936f9d368ea644ade0c45
Author: jtlandis <jtlandis314@gmail.com>
Date: 2026-07-28 18:55:53 -0400
Commit message:
when printing columns, base subset is used on S4 DataFrames causes it to do a column subset (instead of rows), getting occasional out of bounds
Package: BSgenome
Commit: ec74eeebf0ddc95c4c8471f746be64a834e0d7ca
Author: Hervé Pagès <hpages.on.github@gmail.com>
Date: 2026-07-28 15:46:53 -0700
Commit message:
Commit: ec74eeebf0ddc95c4c8471f746be64a834e0d7ca
Author: Hervé Pagès <hpages.on.github@gmail.com>
Date: 2026-07-28 15:46:53 -0700
Commit message:
BSgenome 1.81.1 Remove functions BSgenome::forgeMasksFile, BSgenome::forgeSeqFiles, BSgenome::forgeSeqlengthsRdaFile, BSgenome::forgeSeqlengthsRdsFile, BSgenome::forgeBSgenomeDataPkg, and BSgenome::forgeMaskedBSgenomeDataPkg. These were deprecated in BioC 3.22 and defunct in BioC 3.23.
Package: plyxp
Commit: d63430d95e0aab6db4409fb078d6bdb1cd2f7a2e
Author: jtlandis <jtlandis314@gmail.com>
Date: 2026-07-28 18:43:37 -0400
Commit message:
Commit: d63430d95e0aab6db4409fb078d6bdb1cd2f7a2e
Author: jtlandis <jtlandis314@gmail.com>
Date: 2026-07-28 18:43:37 -0400
Commit message:
Update NEWS
Package: plyxp
Commit: 4a220185dc6793178cdc1511ab8bcb4c6ccc2e02
Author: jtlandis <jtlandis314@gmail.com>
Date: 2026-07-28 18:41:11 -0400
Commit message:
Commit: 4a220185dc6793178cdc1511ab8bcb4c6ccc2e02
Author: jtlandis <jtlandis314@gmail.com>
Date: 2026-07-28 18:41:11 -0400
Commit message:
Merge branch 'devel' of github.com:jtlandis/plyxp into devel
Package: plyxp
Commit: 3225e2500fbbb4c02dac0224882d6bac3e7aed7e
Author: Mike Love <mikelove@users.noreply.github.com>
Date: 2026-06-01 11:10:08 -0400
Commit message:
Commit: 3225e2500fbbb4c02dac0224882d6bac3e7aed7e
Author: Mike Love <mikelove@users.noreply.github.com>
Date: 2026-06-01 11:10:08 -0400
Commit message:
add citation for Landis and Love 2026
Package: plyxp
Commit: f6f9e76ae760d80834e859fe7001b4c849ac9e3a
Author: Mike Love <mikelove@users.noreply.github.com>
Date: 2026-05-07 12:26:52 -0400
Commit message:
Commit: f6f9e76ae760d80834e859fe7001b4c849ac9e3a
Author: Mike Love <mikelove@users.noreply.github.com>
Date: 2026-05-07 12:26:52 -0400
Commit message:
mike made a typo
Package: plyxp
Commit: c520c3f170352c9d4b861ead8064531a4638a4a5
Author: Mike Love <mikelove@users.noreply.github.com>
Date: 2026-05-07 10:21:53 -0400
Commit message:
Commit: c520c3f170352c9d4b861ead8064531a4638a4a5
Author: Mike Love <mikelove@users.noreply.github.com>
Date: 2026-05-07 10:21:53 -0400
Commit message:
add docs to gitignore
Package: plyxp
Commit: f0f866602bec03a78e6fd6c04c77f3c12fa98611
Author: Mike Love <mikelove@users.noreply.github.com>
Date: 2026-05-07 10:14:35 -0400
Commit message:
Commit: f0f866602bec03a78e6fd6c04c77f3c12fa98611
Author: Mike Love <mikelove@users.noreply.github.com>
Date: 2026-05-07 10:14:35 -0400
Commit message:
updates to README for github pages
Package: plyxp
Commit: 3e6fb3cd72d81b310cd46a1ba222122cdd2a3822
Author: Mike Love <mikelove@users.noreply.github.com>
Date: 2026-05-06 13:28:49 -0400
Commit message:
Commit: 3e6fb3cd72d81b310cd46a1ba222122cdd2a3822
Author: Mike Love <mikelove@users.noreply.github.com>
Date: 2026-05-06 13:28:49 -0400
Commit message:
try github actions to run with 3.22
Package: plyxp
Commit: 30bf70397754f5be0b4ce81091c8d1ed95dd7370
Author: jtlandis <jtlandis314@gmail.com>
Date: 2026-07-28 18:37:17 -0400
Commit message:
Commit: 30bf70397754f5be0b4ce81091c8d1ed95dd7370
Author: jtlandis <jtlandis314@gmail.com>
Date: 2026-07-28 18:37:17 -0400
Commit message:
Style changes
Package: plyxp
Commit: e2c944552698611b7a76566c609718eb3cc5fd38
Author: jtlandis <jtlandis314@gmail.com>
Date: 2026-07-28 18:37:06 -0400
Commit message:
Commit: e2c944552698611b7a76566c609718eb3cc5fd38
Author: jtlandis <jtlandis314@gmail.com>
Date: 2026-07-28 18:37:06 -0400
Commit message:
Another bug, likely meant to call vec_slice on rownames
Package: plyxp
Commit: 47126c83301a7da9cde1b9eeb1c297a305536979
Author: jtlandis <jtlandis314@gmail.com>
Date: 2026-05-08 18:03:11 -0400
Commit message:
Commit: 47126c83301a7da9cde1b9eeb1c297a305536979
Author: jtlandis <jtlandis314@gmail.com>
Date: 2026-05-08 18:03:11 -0400
Commit message:
Small bug in removing assays
Package: rhdf5
Commit: 0466a61dc07063f718131bbc8182f395023e5100
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-27 10:49:33 +0200
Commit message:
Commit: 0466a61dc07063f718131bbc8182f395023e5100
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-27 10:49:33 +0200
Commit message:
Bump version
Package: rhdf5
Commit: 2aa29a73d8843f1f5aaab54cdab9eeed67922d0e
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-27 10:42:37 +0200
Commit message:
Commit: 2aa29a73d8843f1f5aaab54cdab9eeed67922d0e
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-27 10:42:37 +0200
Commit message:
Document deprecations and breaking changes in NEWS
Package: rhdf5
Commit: 8a6079270f3c238cd5deeafd0cc1f69ba13301b2
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-27 10:42:07 +0200
Commit message:
Commit: 8a6079270f3c238cd5deeafd0cc1f69ba13301b2
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-27 10:42:07 +0200
Commit message:
Remove bit64conversion = "default" option
Package: rhdf5
Commit: cde03134df34907430fb4112707d6d417f692e75
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-27 10:38:55 +0200
Commit message:
Commit: cde03134df34907430fb4112707d6d417f692e75
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-27 10:38:55 +0200
Commit message:
Export h5writeAttribute.array()
Package: rhdf5
Commit: 9f92ea1bad024f4b0c4178aa92b488ccbb0f86ea
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-27 10:38:20 +0200
Commit message:
Commit: 9f92ea1bad024f4b0c4178aa92b488ccbb0f86ea
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-27 10:38:20 +0200
Commit message:
Remove native argument from H5Pcreate()
Package: rhdf5
Commit: 0688af2344d76054dada8fd776634b1eaf1ea1ff
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-27 10:37:41 +0200
Commit message:
Commit: 0688af2344d76054dada8fd776634b1eaf1ea1ff
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-27 10:37:41 +0200
Commit message:
Remove fix_missing() shim for missing bit64conversion
Package: rhdf5
Commit: d5f9e92b9845a685f65506ed3474c666130aa55c
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-27 10:36:35 +0200
Commit message:
Commit: d5f9e92b9845a685f65506ed3474c666130aa55c
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-27 10:36:35 +0200
Commit message:
Remove H5Pget_version()
Package: rhdf5
Commit: d0a33f358d5b6c155dc1a90bf68cd3ed18e3920a
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-02 11:19:33 +0200
Commit message:
Commit: d0a33f358d5b6c155dc1a90bf68cd3ed18e3920a
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-02 11:19:33 +0200
Commit message:
Pull index - 1L out of integer
Package: rhdf5
Commit: 2b7413d33c25139fa5965ec32f9c127e92cd732b
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-02 11:19:14 +0200
Commit message:
Commit: 2b7413d33c25139fa5965ec32f9c127e92cd732b
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-02 11:19:14 +0200
Commit message:
Use sort(unique()) rather than unique(sort()) since the latter is faster
Package: rhdf5
Commit: d736ffae2ee55d8afd93018166236f3a7e706fff
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-02 10:58:54 +0200
Commit message:
Commit: d736ffae2ee55d8afd93018166236f3a7e706fff
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-02 10:58:54 +0200
Commit message:
Use vectorized arithmetic instead of loop
Package: rhdf5
Commit: 6b97110c1a764062d2dbc58869a0a6250bf67d93
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-01 18:07:37 +0200
Commit message:
Commit: 6b97110c1a764062d2dbc58869a0a6250bf67d93
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-01 18:07:37 +0200
Commit message:
Let roxygen find the name of the fct to export
Package: rhdf5
Commit: 53bc12ba816c66d397ec59e758b7ca025824ce0b
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-01 18:07:20 +0200
Commit message:
Commit: 53bc12ba816c66d397ec59e758b7ca025824ce0b
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-01 18:07:20 +0200
Commit message:
Remove dontrun
Package: rhdf5
Commit: 58ef7784e8ca23af234258893d000996f96764f0
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-06-30 18:01:33 +0200
Commit message:
Commit: 58ef7784e8ca23af234258893d000996f96764f0
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-06-30 18:01:33 +0200
Commit message:
Add examples to more functions
Package: rhdf5
Commit: 5864ec57ec4d44159251bc82a5e3d7e9f41f5b1d
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-06-26 10:54:55 +0200
Commit message:
Commit: 5864ec57ec4d44159251bc82a5e3d7e9f41f5b1d
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-06-26 10:54:55 +0200
Commit message:
Add note about naming high-level functions
Package: rhdf5
Commit: fcc21e268849e882a1b08425d213d2f5684dd461
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-05-26 11:15:02 +0200
Commit message:
Commit: fcc21e268849e882a1b08425d213d2f5684dd461
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-05-26 11:15:02 +0200
Commit message:
Use dedicated test functions and fixed = TRUE
Package: rhdf5
Commit: 9b2e6afdf05de00f269f9f96d88da02d05f180f5
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-05-24 15:35:46 +0200
Commit message:
Commit: 9b2e6afdf05de00f269f9f96d88da02d05f180f5
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-05-24 15:35:46 +0200
Commit message:
Simplify some branching patterns
Package: Rarr
Commit: c4f94c449e80675326e8198f2d4a45de579c4962
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-28 16:52:28 +0200
Commit message:
Commit: c4f94c449e80675326e8198f2d4a45de579c4962
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-28 16:52:28 +0200
Commit message:
Bump version
Package: Rarr
Commit: fbbf42acc836e6c4fd297b09b54d2ad5ccad58a0
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-28 16:52:12 +0200
Commit message:
Commit: fbbf42acc836e6c4fd297b09b54d2ad5ccad58a0
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-28 16:52:12 +0200
Commit message:
Mention no copy shortcut in NEWS
Package: Rarr
Commit: cc4bb31cca5106b69ada09f776184e3eb8a31535
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-28 13:19:39 +0200
Commit message:
Commit: cc4bb31cca5106b69ada09f776184e3eb8a31535
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-28 13:19:39 +0200
Commit message:
Avoid copy when reading a single chunk
Package: DiffBind
Commit: 4344db0ed40fb1030a283a5bf4d4e2c94ef5e79f
Author: Rory Stark <bioconductor@starkhome.com>
Date: 2026-07-28 17:13:28 +0100
Commit message:
Commit: 4344db0ed40fb1030a283a5bf4d4e2c94ef5e79f
Author: Rory Stark <bioconductor@starkhome.com>
Date: 2026-07-28 17:13:28 +0100
Commit message:
3.23.4: add package anchors to Rd cross-references
Doc-only fix for the "Found Rd file(s) with Rd \link{} targets
missing package anchors" R CMD check NOTE. Anchors external \link{}
targets (GRanges, SummarizedExperiment, mcols, DESeqDataSet,
summarizeOverlaps, GreyList/calcThreshold, Dist, heatmap.2,
lattice/xyplot, vennPlot) to their packages across 14 man/*.Rd
files. No code change.
Package: GSVA
Commit: 2e5d1a9cf79b5e18c62bf6684cb9304ab0f0622a
Author: Robert Castelo <robert.castelo@upf.edu>
Date: 2026-07-28 17:54:40 +0200
Commit message:
Commit: 2e5d1a9cf79b5e18c62bf6684cb9304ab0f0622a
Author: Robert Castelo <robert.castelo@upf.edu>
Date: 2026-07-28 17:54:40 +0200
Commit message:
Updated scRNA-seq vignette
Package: rhdf5filters
Commit: f5fc33d060c635fb372e7283dd7fadf809f4acb0
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-28 16:42:51 +0200
Commit message:
Commit: f5fc33d060c635fb372e7283dd7fadf809f4acb0
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-28 16:42:51 +0200
Commit message:
Bump version
Package: rhdf5filters
Commit: c371f901fef48b0dcb8258541d9ac5e5827be30e
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-28 16:42:39 +0200
Commit message:
Commit: c371f901fef48b0dcb8258541d9ac5e5827be30e
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-28 16:42:39 +0200
Commit message:
Mention compilation fix in NEWS
Package: rhdf5filters
Commit: 4af8327e0ce3e081d3d64e9fddd5b97dd9070496
Author: Jeroen Ooms <jeroenooms@gmail.com>
Date: 2026-07-28 16:40:32 +0200
Commit message:
Commit: 4af8327e0ce3e081d3d64e9fddd5b97dd9070496
Author: Jeroen Ooms <jeroenooms@gmail.com>
Date: 2026-07-28 16:40:32 +0200
Commit message:
Fix Windows ARM64 build by selecting SIMD flags per architecture (#33) Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
Package: rhdf5filters
Commit: cea2354e0c9f37eeb4cc9379696b98f437e398d2
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-28 15:41:52 +0200
Commit message:
Commit: cea2354e0c9f37eeb4cc9379696b98f437e398d2
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-28 15:41:52 +0200
Commit message:
Try requesting macos-26-intel
Package: rhdf5filters
Commit: 66a5d2622591b8bc804759beab9cf9d83a713b4f
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-28 15:36:35 +0200
Commit message:
Commit: 66a5d2622591b8bc804759beab9cf9d83a713b4f
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-28 15:36:35 +0200
Commit message:
Add missing quote
Package: rhdf5filters
Commit: 3870e692f4c0932d65e5a5001600642a8dbdf83f
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-28 15:32:57 +0200
Commit message:
Commit: 3870e692f4c0932d65e5a5001600642a8dbdf83f
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-28 15:32:57 +0200
Commit message:
Use simpler workflow
Package: rhdf5filters
Commit: 424d7ac11b2b110e9f75be37e83bcd44ea1b9502
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-28 15:28:39 +0200
Commit message:
Commit: 424d7ac11b2b110e9f75be37e83bcd44ea1b9502
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-28 15:28:39 +0200
Commit message:
Update OS in workflow and add ARM variants for all families
Package: excluderanges
Commit: 89eeeabd303ea7d4543a005ccebdb74449c541d4
Author: Mikhail Dozmorov <mdozmorov@users.noreply.github.com>
Date: 2026-07-28 10:11:41 -0400
Commit message:
Commit: 89eeeabd303ea7d4543a005ccebdb74449c541d4
Author: Mikhail Dozmorov <mdozmorov@users.noreply.github.com>
Date: 2026-07-28 10:11:41 -0400
Commit message:
Update all objects, metadata, Zenodo, version bump
Package: looplook
Commit: e8e0fd8b200c95823c0b5a0f86bef8ffed1af1d2
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-28 17:12:38 +0800
Commit message:
Commit: e8e0fd8b200c95823c0b5a0f86bef8ffed1af1d2
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-28 17:12:38 +0800
Commit message:
v0.99.15: tryCatch fixed
Package: looplook
Commit: ff4ba71b563f48c7b6130ed887a4945a4b146d80
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-28 16:47:42 +0800
Commit message:
Commit: ff4ba71b563f48c7b6130ed887a4945a4b146d80
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-28 16:47:42 +0800
Commit message:
v0.99.15: unified resolver, strict/P-P/metadata closed loop1
Package: looplook
Commit: 3217cdf6bac7d21306b5c3bb855668054242a09a
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-23 20:50:29 +0800
Commit message:
Commit: 3217cdf6bac7d21306b5c3bb855668054242a09a
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-23 20:50:29 +0800
Commit message:
v0.99.15: unified resolver, strict/P-P/metadata closed loop
Package: looplook
Commit: fe4f9f93c3c4b712961c77bc1f04020b5cabd8a2
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-23 20:46:28 +0800
Commit message:
Commit: fe4f9f93c3c4b712961c77bc1f04020b5cabd8a2
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-23 20:46:28 +0800
Commit message:
v0.99.15: algorithm freeze — unified resolver, strict/P-P/metadata closed loop
Package: looplook
Commit: 6132c68e8704530ecd134879e42558770424c0bf
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-21 14:11:02 +0800
Commit message:
Commit: 6132c68e8704530ecd134879e42558770424c0bf
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-21 14:11:02 +0800
Commit message:
v0.99.15: hop=1 perf, lazy ego, neighbor cache, tests fix, column order, get_edge_ids
Package: looplook
Commit: 17bc68b3c4d0aafddbe2fad0e5c0a43052a23df9
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-20 22:08:06 +0800
Commit message:
Commit: 17bc68b3c4d0aafddbe2fad0e5c0a43052a23df9
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-20 22:08:06 +0800
Commit message:
v0.99.15: fix cross-platform vignette build
Package: looplook
Commit: 56e99fe8406b7d4b65cb2acb80305253e9cbadc7
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-20 21:34:03 +0800
Commit message:
Commit: 56e99fe8406b7d4b65cb2acb80305253e9cbadc7
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-20 21:34:03 +0800
Commit message:
v0.99.15: fix cross-platform vignette build (strip TxDb from RData, add magick)
Package: looplook
Commit: c0aa13ff6aba3e021bad125a395c7e937c5e1b8e
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-20 21:25:51 +0800
Commit message:
Commit: c0aa13ff6aba3e021bad125a395c7e937c5e1b8e
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-20 21:25:51 +0800
Commit message:
v0.99.15: triple-positive fix, chromatin boundary tests, doc fix
Package: looplook
Commit: 8434c2368b9496d69c265e2ad681ff6ed178b41e
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-20 20:23:28 +0800
Commit message:
Commit: 8434c2368b9496d69c265e2ad681ff6ed178b41e
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-20 20:23:28 +0800
Commit message:
v0.99.15: triple-positive fix, chromatin boundary tests, doc sync
Package: looplook
Commit: 88519179f546b9d918684b5008708f3623bc220d
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-18 14:36:36 +0800
Commit message:
Commit: 88519179f546b9d918684b5008708f3623bc220d
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-18 14:36:36 +0800
Commit message:
v0.99.15: algorithm freeze + full pipeline closure
Algorithm:
- target_priority parameter (default: promoter_then_distance)
- max_primary_hop = 1L hardcoded (primary local/direct vs expanded multi-hop)
- Bivalent promoter rule: eP/eG+H3K4me3+ -> P (H3K4me3 defines promoter)
- eG dual-positive asymmetry fixed (eG -> P, not G)
- Enhancer BED promoted to true highest priority
- Chromatin rules reordered: dual_like bigWig resolution before general eP->P
- Duplicate E/G dual-positive rules removed
Target assignment:
- Assigned_Target_Genes from primary (path <= 1) only
- Regulated_promoter_genes from primary links only
- Expanded_Target_Genes for multi-hop candidates (expanded-only genes)
- Tied genes with same optimal priority preserved (semicolon-delimited)
- Regulated_promoter_Evidence restricted to path <= 1
TSS provenance:
- TSS_supported, TSS_support_status, Gene_Assignment_Confidence,
Gene_Assignment_Evidence added to target_gene_links schema
- TSS_supported uses NA (unchecked) / TRUE / FALSE tri-state
- TSS provenance threaded through chromatin recomputation chain
Documentation:
- BED-only mode description fixed (dual-positive anchors retain type)
- measured_set misleading reference removed
- co_dominance_ratio 'within 10%' -> 'at least 10%' in README
- target_priority doc fixed (affects Assigned_Target_Genes only)
- Assigned_Target_Genes: 'distance-first' -> 'policy-based 3D assignment'
- candidate_types docs unified (all 5 types tested by default)
- ENCODE -> ENCODE-inspired in report template
- vignette: gsea_nSample default fixed, reclassified -> refined_res
- devtools::document() regenerated all Rd files
Testing:
- skip_on_bioc() removed from 3 core regression files
- 3 recompute_targets=FALSE tests un-skipped, expectations updated
- chromatin rule tests: dual_like + me1/unresolved/not_me1, bivalent, enhancer BED
- target_priority tests: promoter_first, distance_first, tied promoters
- is_expanded_path test: path 0/1/2/NA outputs
- expanded promoter does not override direct gene-body test
Engineering:
- globalVariables() declarations for 30+ NSE symbols
- styler::style_pkg(indent_by = 4) formatting
- Duplicate .target_link_schema vector removed
- is_expanded_path unified in membership function (not chromatin-only)
- Gene_Assignment_Confidence duplicate in refined_cols fixed
- quiet=TRUE mode: message() calls wrapped in !quiet guards
- .Rbuildignore updated for review Markdown files
- All 0.99.14 review + design docs excluded from build
Package: looplook
Commit: 0a40f830cba74391411f689d10f46b04401462eb
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-12 10:44:25 +0800
Commit message:
Commit: 0a40f830cba74391411f689d10f46b04401462eb
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-12 10:44:25 +0800
Commit message:
v0.99.14: fix vignettes
Package: looplook
Commit: a1adea848ae88c5eff94c5562207bba38dcb00d6
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-11 23:07:13 +0800
Commit message:
Commit: a1adea848ae88c5eff94c5562207bba38dcb00d6
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-11 23:07:13 +0800
Commit message:
v0.99.14: Bioconductor review revisions minor fix1
Package: looplook
Commit: f3aea678a346ad96830c12fa0cf47dee59378f7f
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-11 22:51:33 +0800
Commit message:
Commit: f3aea678a346ad96830c12fa0cf47dee59378f7f
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-11 22:51:33 +0800
Commit message:
v0.99.14: Bioconductor review revisions minor fix
Package: looplook
Commit: f2610b3bcab3e8e26440d65e7dabe5aa6301ff7c
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-08 13:53:15 +0800
Commit message:
Commit: f2610b3bcab3e8e26440d65e7dabe5aa6301ff7c
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-08 13:53:15 +0800
Commit message:
v0.99.14: Bioconductor review revisions checks
Package: looplook
Commit: 8952d94e74647ed15532ae387e43f8efa63b4cf6
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-08 13:41:16 +0800
Commit message:
Commit: 8952d94e74647ed15532ae387e43f8efa63b4cf6
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-08 13:41:16 +0800
Commit message:
v0.99.14: Bioconductor review revisions check
Package: looplook
Commit: 98da17598ff642d4a9e0768f4f2e779cc8928d57
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-02 20:38:45 +0800
Commit message:
Commit: 98da17598ff642d4a9e0768f4f2e779cc8928d57
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-02 20:38:45 +0800
Commit message:
v0.99.14: Bioconductor review revisions null message
Package: looplook
Commit: 2a3204440e35ee451c77c9b92af2b288da859bf7
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-02 10:33:11 +0800
Commit message:
Commit: 2a3204440e35ee451c77c9b92af2b288da859bf7
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-02 10:33:11 +0800
Commit message:
v0.99.14: Bioconductor review revisions new functions fixed
Package: looplook
Commit: feaad984dd08f9aadb05566fff494e71f98db27e
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-02 10:18:06 +0800
Commit message:
Commit: feaad984dd08f9aadb05566fff494e71f98db27e
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-07-02 10:18:06 +0800
Commit message:
v0.99.14: Bioconductor review revisions new functions2
Package: looplook
Commit: 4258d061f43ab62eed5c1a753874139fda7f516b
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-30 22:33:24 +0800
Commit message:
Commit: 4258d061f43ab62eed5c1a753874139fda7f516b
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-30 22:33:24 +0800
Commit message:
v0.99.14: Bioconductor review revisions new functions1
Package: looplook
Commit: 58bcd0fe5cb58f5f4a0ad0bc50b5b443525c1d44
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-28 07:44:05 +0800
Commit message:
Commit: 58bcd0fe5cb58f5f4a0ad0bc50b5b443525c1d44
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-28 07:44:05 +0800
Commit message:
v0.99.14: Bioconductor review revisions new functions
Package: looplook
Commit: 38593f375ed1d4243489bca0a5d3a3a672e96267
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-28 00:09:57 +0800
Commit message:
Commit: 38593f375ed1d4243489bca0a5d3a3a672e96267
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-28 00:09:57 +0800
Commit message:
v0.99.14: Bioconductor review revisions fix functions3
Package: looplook
Commit: a1296a705a5ef535fa1501267888f131cb121308
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-24 12:21:05 +0800
Commit message:
Commit: a1296a705a5ef535fa1501267888f131cb121308
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-24 12:21:05 +0800
Commit message:
v0.99.14: Bioconductor review revisions fix functions1
Package: looplook
Commit: 67315d356e2a03c6d651dfbdb4931ed78ec2b9f5
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-24 00:30:57 +0800
Commit message:
Commit: 67315d356e2a03c6d651dfbdb4931ed78ec2b9f5
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-24 00:30:57 +0800
Commit message:
v0.99.14: Bioconductor review revisions fix functions
Package: looplook
Commit: 1ded4d22977c04fcc2e90bb033c51fc7337bd209
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-24 00:08:44 +0800
Commit message:
Commit: 1ded4d22977c04fcc2e90bb033c51fc7337bd209
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-24 00:08:44 +0800
Commit message:
v0.99.14: Bioconductor review revisions updated functions
Package: looplook
Commit: d67c58008472a8c9019b05659bd088e7ccd6c82e
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-23 13:58:46 +0800
Commit message:
Commit: d67c58008472a8c9019b05659bd088e7ccd6c82e
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-23 13:58:46 +0800
Commit message:
v0.99.14: Bioconductor review revisions updated documents
Package: looplook
Commit: 8aaad8e569c80bb41950b48e2420ae1209441c3b
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-21 23:52:51 +0800
Commit message:
Commit: 8aaad8e569c80bb41950b48e2420ae1209441c3b
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-21 23:52:51 +0800
Commit message:
v0.99.14: Bioconductor review revisions updated document
Package: looplook
Commit: c876ee38c8343c5b5b09ea6039ada6d63794663c
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-21 19:57:12 +0800
Commit message:
Commit: c876ee38c8343c5b5b09ea6039ada6d63794663c
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-21 19:57:12 +0800
Commit message:
v0.99.14: Bioconductor review revisions updated docu
Package: looplook
Commit: 6b1f35d6fdeb2b5d9a7ed7c7b0357ada5cc4da48
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-21 12:28:58 +0800
Commit message:
Commit: 6b1f35d6fdeb2b5d9a7ed7c7b0357ada5cc4da48
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-21 12:28:58 +0800
Commit message:
v0.99.14: Bioconductor review revisions updated doc3
Package: looplook
Commit: 1d064d1d6f63fbcb4872a07d1fff926e564bb9f0
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-19 19:52:11 +0800
Commit message:
Commit: 1d064d1d6f63fbcb4872a07d1fff926e564bb9f0
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-19 19:52:11 +0800
Commit message:
Remove figure/ from tracking (.gitignore now covers it)
Package: looplook
Commit: 4d52862eafdb4615b05f9ec988b529403188388a
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-19 19:46:33 +0800
Commit message:
Commit: 4d52862eafdb4615b05f9ec988b529403188388a
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-19 19:46:33 +0800
Commit message:
v0.99.14: Bioconductor review revisions updated function3
Package: looplook
Commit: fc3cccb5272e28f728e7e0e9c64ba20ec6949540
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-19 11:00:36 +0800
Commit message:
Commit: fc3cccb5272e28f728e7e0e9c64ba20ec6949540
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-19 11:00:36 +0800
Commit message:
v0.99.14: Bioconductor review revisions updated function2
Package: looplook
Commit: 9f73f48e5d37482b1867c513c6347d96d6d5193d
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-19 09:39:21 +0800
Commit message:
Commit: 9f73f48e5d37482b1867c513c6347d96d6d5193d
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-19 09:39:21 +0800
Commit message:
v0.99.14: Bioconductor review revisions updated function1
Package: looplook
Commit: b2233418b1f9bde020fd18f40616bb9b180f8d2c
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-18 09:47:42 +0800
Commit message:
Commit: b2233418b1f9bde020fd18f40616bb9b180f8d2c
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-18 09:47:42 +0800
Commit message:
v0.99.14: Bioconductor review revisions updated function
Package: looplook
Commit: aff8bacf7973e5bc019c8b4048ee7ae9e0118487
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-12 23:05:45 +0800
Commit message:
Commit: aff8bacf7973e5bc019c8b4048ee7ae9e0118487
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-12 23:05:45 +0800
Commit message:
v0.99.14: Bioconductor review revisions updated doc2
Package: looplook
Commit: 7cb2da4e87e840801450ee0370846f5bd1aed627
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-12 20:15:10 +0800
Commit message:
Commit: 7cb2da4e87e840801450ee0370846f5bd1aed627
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-12 20:15:10 +0800
Commit message:
v0.99.14: Bioconductor review revisions updated doc1
Package: looplook
Commit: dc2736714d7dcd57e7791535352f7c1cb90190ea
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-12 11:09:57 +0800
Commit message:
Commit: dc2736714d7dcd57e7791535352f7c1cb90190ea
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-12 11:09:57 +0800
Commit message:
v0.99.14: Bioconductor review revisions updated doc
Package: looplook
Commit: 7a77766e886e2ae3ada7ddfb98ed88414cdd84dd
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-11 22:32:56 +0800
Commit message:
Commit: 7a77766e886e2ae3ada7ddfb98ed88414cdd84dd
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-11 22:32:56 +0800
Commit message:
v0.99.14: Bioconductor review revisions updated3
Package: looplook
Commit: 4bd50ab7f690aa3974c064c359fd98dc67770239
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-11 09:57:48 +0800
Commit message:
Commit: 4bd50ab7f690aa3974c064c359fd98dc67770239
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-11 09:57:48 +0800
Commit message:
v0.99.14: Bioconductor review revisions updated2
Package: looplook
Commit: 4093b242efe61f9aa6f6c26154cc538739fe5bb4
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-11 08:35:07 +0800
Commit message:
Commit: 4093b242efe61f9aa6f6c26154cc538739fe5bb4
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-11 08:35:07 +0800
Commit message:
v0.99.14: Bioconductor review revisions updated1
Package: looplook
Commit: e94a59a4830aa4a5241b28914529a1c8a029170d
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-11 00:00:12 +0800
Commit message:
Commit: e94a59a4830aa4a5241b28914529a1c8a029170d
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-11 00:00:12 +0800
Commit message:
v0.99.14: Bioconductor review revisions updated
Package: looplook
Commit: 70566770264bcb40b75ba2c0d10657537bf27b9c
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-10 22:49:12 +0800
Commit message:
Commit: 70566770264bcb40b75ba2c0d10657537bf27b9c
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-10 22:49:12 +0800
Commit message:
v0.99.14: Bioconductor review revisions7
Package: looplook
Commit: a2f4211fee214f99c041681763fa40231d80ea91
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-09 14:05:50 +0800
Commit message:
Commit: a2f4211fee214f99c041681763fa40231d80ea91
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-09 14:05:50 +0800
Commit message:
v0.99.14: Bioconductor review revisions6
Package: looplook
Commit: ffde0546c911273d2bfa6f644d0100e3d094ff35
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-06 11:42:32 +0800
Commit message:
Commit: ffde0546c911273d2bfa6f644d0100e3d094ff35
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-06 11:42:32 +0800
Commit message:
Re-render README.md from updated README.Rmd
Package: looplook
Commit: 10b3086bb5d290850250452bc24c17b03d9dd934
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-06 10:16:59 +0800
Commit message:
Commit: 10b3086bb5d290850250452bc24c17b03d9dd934
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-06 10:16:59 +0800
Commit message:
v0.99.14: Bioconductor review revisions5
Package: looplook
Commit: 6b84ca295c6c83704be14bec0f13157b5b08283a
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-06 09:06:22 +0800
Commit message:
Commit: 6b84ca295c6c83704be14bec0f13157b5b08283a
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-06 09:06:22 +0800
Commit message:
v0.99.14: Bioconductor review revisions4
Package: looplook
Commit: 2cd75016d45bc0108f515df3d93317a28d52cf5a
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-06 08:12:25 +0800
Commit message:
Commit: 2cd75016d45bc0108f515df3d93317a28d52cf5a
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-06 08:12:25 +0800
Commit message:
v0.99.14: Bioconductor review revisions3
Package: looplook
Commit: 566a13225eaf35c4b228e41e0443bae0ac6c75a3
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-05 20:55:16 +0800
Commit message:
Commit: 566a13225eaf35c4b228e41e0443bae0ac6c75a3
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-05 20:55:16 +0800
Commit message:
v0.99.14: Bioconductor review revisions2
Package: looplook
Commit: e39b7f8de0857c13bb3f6fb764ed21008a52104d
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-05 20:06:16 +0800
Commit message:
Commit: e39b7f8de0857c13bb3f6fb764ed21008a52104d
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-05 20:06:16 +0800
Commit message:
v0.99.14: Bioconductor review revisions1
Package: looplook
Commit: 82c33ea57021589788eb986144cd72807f85adb0
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-05 20:00:11 +0800
Commit message:
Commit: 82c33ea57021589788eb986144cd72807f85adb0
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-06-05 20:00:11 +0800
Commit message:
v0.99.14: Bioconductor review revisions
Package: looplook
Commit: 6364ba2be08a568404b2197146e6980bcafbc3da
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-05-25 13:29:16 +0800
Commit message:
Commit: 6364ba2be08a568404b2197146e6980bcafbc3da
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-05-25 13:29:16 +0800
Commit message:
Refine code quality and algorithm coverage for Bioconductor review.
Package: looplook
Commit: c4c68f934d4f440c3541570530b921143582f779
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-05-25 13:20:45 +0800
Commit message:
Commit: c4c68f934d4f440c3541570530b921143582f779
Author: Ying Zhang <12207129@zju.edu.cn>
Date: 2026-05-25 13:20:45 +0800
Commit message:
Refine code quality and algorithm coverage for Bioconductor review
Package: gDRutils
Commit: 353dc69b1b2f963ba71659da885ef343a82e1810
Author: Bartek <32614650+bczech@users.noreply.github.com>
Date: 2026-07-28 14:34:49 +0200
Commit message:
Commit: 353dc69b1b2f963ba71659da885ef343a82e1810
Author: Bartek <32614650+bczech@users.noreply.github.com>
Date: 2026-07-28 14:34:49 +0200
Commit message:
Merge pull request #194 from gdrplatform/GDR-3499 fix: compare package versions numerically in get_gDR_session_info
Package: gDRutils
Commit: 537ab967bffb14b876abacc883e6b370e9f96845
Author: Bartek Czech <bartosz.w.czech@gmail.com>
Date: 2026-07-28 10:08:23 +0200
Commit message:
Commit: 537ab967bffb14b876abacc883e6b370e9f96845
Author: Bartek Czech <bartosz.w.czech@gmail.com>
Date: 2026-07-28 10:08:23 +0200
Commit message:
style: use .Library instead of .libPaths() in get_gDR_session_info test
Package: gDRutils
Commit: 3c427cbb3a22bb0788eeea1845a1d0f8321c3fc5
Author: Bartek Czech <bartosz.w.czech@gmail.com>
Date: 2026-07-28 08:27:39 +0200
Commit message:
Commit: 3c427cbb3a22bb0788eeea1845a1d0f8321c3fc5
Author: Bartek Czech <bartosz.w.czech@gmail.com>
Date: 2026-07-28 08:27:39 +0200
Commit message:
Merge remote-tracking branch 'origin/main' into GDR-3499 # Conflicts: # DESCRIPTION # NEWS.md
Package: gDRutils
Commit: e857c0bb17c07028ecd86621a3da19d27b83130f
Author: Bartek Czech <bartosz.w.czech@gmail.com>
Date: 2026-07-27 17:00:44 +0200
Commit message:
Commit: e857c0bb17c07028ecd86621a3da19d27b83130f
Author: Bartek Czech <bartosz.w.czech@gmail.com>
Date: 2026-07-27 17:00:44 +0200
Commit message:
fix: compare package versions numerically in get_gDR_session_info (GDR-3499)
Package: excluderanges
Commit: 9721456b53be39090d955f60d69bbd891a7b5eec
Author: Mikhail Dozmorov <mdozmorov@users.noreply.github.com>
Date: 2026-07-28 07:51:03 -0400
Commit message:
Commit: 9721456b53be39090d955f60d69bbd891a7b5eec
Author: Mikhail Dozmorov <mdozmorov@users.noreply.github.com>
Date: 2026-07-28 07:51:03 -0400
Commit message:
Merge branch 'master' into devel
Package: excluderanges
Commit: d00c4bffb5ee817e7530a1a45675a8f79a8a9887
Author: Mikhail Dozmorov <mdozmorov@users.noreply.github.com>
Date: 2026-07-27 11:51:50 -0400
Commit message:
Commit: d00c4bffb5ee817e7530a1a45675a8f79a8a9887
Author: Mikhail Dozmorov <mdozmorov@users.noreply.github.com>
Date: 2026-07-27 11:51:50 -0400
Commit message:
Version bump
Package: excluderanges
Commit: 43ea6b4f67a630d5a907de8eaa6ce25def92aee3
Author: Virp0 <bhvirpatel@gmail.com>
Date: 2026-07-27 08:17:16 -0700
Commit message:
Commit: 43ea6b4f67a630d5a907de8eaa6ce25def92aee3
Author: Virp0 <bhvirpatel@gmail.com>
Date: 2026-07-27 08:17:16 -0700
Commit message:
Add files via upload
Package: excluderanges
Commit: a3cfe0d8eea81e7c2a01af00328f281b39d049ca
Author: Virp0 <bhvirpatel@gmail.com>
Date: 2026-07-27 08:17:03 -0700
Commit message:
Commit: a3cfe0d8eea81e7c2a01af00328f281b39d049ca
Author: Virp0 <bhvirpatel@gmail.com>
Date: 2026-07-27 08:17:03 -0700
Commit message:
Delete inst/extdata/metadata_zenodo_fixed.csv
Package: excluderanges
Commit: b4ca9b6d34ff6e8ec1147311e167f30682e0fa45
Author: Virp0 <bhvirpatel@gmail.com>
Date: 2026-07-27 08:16:32 -0700
Commit message:
Commit: b4ca9b6d34ff6e8ec1147311e167f30682e0fa45
Author: Virp0 <bhvirpatel@gmail.com>
Date: 2026-07-27 08:16:32 -0700
Commit message:
Add files via upload
Package: excluderanges
Commit: 41ef95f4b9bacaf9f5d6da84f248962f37299721
Author: Virp0 <bhvirpatel@gmail.com>
Date: 2026-07-27 08:16:13 -0700
Commit message:
Commit: 41ef95f4b9bacaf9f5d6da84f248962f37299721
Author: Virp0 <bhvirpatel@gmail.com>
Date: 2026-07-27 08:16:13 -0700
Commit message:
Delete inst/scripts/make-metadata.R
Package: excluderanges
Commit: 4471a3c4b3063ff27cbf5fe30e7844c1acbf6001
Author: Virp0 <bhvirpatel@gmail.com>
Date: 2026-07-26 20:41:08 -0700
Commit message:
Commit: 4471a3c4b3063ff27cbf5fe30e7844c1acbf6001
Author: Virp0 <bhvirpatel@gmail.com>
Date: 2026-07-26 20:41:08 -0700
Commit message:
Add files via upload
Package: excluderanges
Commit: 7d1aa8becd8f2953b7e1034c8744bec9ddaa16a2
Author: Virp0 <bhvirpatel@gmail.com>
Date: 2026-07-26 20:40:48 -0700
Commit message:
Commit: 7d1aa8becd8f2953b7e1034c8744bec9ddaa16a2
Author: Virp0 <bhvirpatel@gmail.com>
Date: 2026-07-26 20:40:48 -0700
Commit message:
Delete inst/extdata/metadata_zenodo_fixed.csv
Package: excluderanges
Commit: 4b2773667a5c08af797a39900bf521bebe66bf46
Author: Virp0 <bhvirpatel@gmail.com>
Date: 2026-07-26 20:36:36 -0700
Commit message:
Commit: 4b2773667a5c08af797a39900bf521bebe66bf46
Author: Virp0 <bhvirpatel@gmail.com>
Date: 2026-07-26 20:36:36 -0700
Commit message:
Add files via upload
Package: excluderanges
Commit: bb318fb4958f8594cbab3d86058474c95f25addb
Author: Virp0 <bhvirpatel@gmail.com>
Date: 2026-07-26 20:35:49 -0700
Commit message:
Commit: bb318fb4958f8594cbab3d86058474c95f25addb
Author: Virp0 <bhvirpatel@gmail.com>
Date: 2026-07-26 20:35:49 -0700
Commit message:
Create README.md
Package: excluderanges
Commit: 5408dc5a77604c9e1089f23b2f6ff7607d3727f8
Author: Virp0 <bhvirpatel@gmail.com>
Date: 2026-07-26 20:33:41 -0700
Commit message:
Commit: 5408dc5a77604c9e1089f23b2f6ff7607d3727f8
Author: Virp0 <bhvirpatel@gmail.com>
Date: 2026-07-26 20:33:41 -0700
Commit message:
Add files via upload
Package: excluderanges
Commit: 6b2082db2f1a7ef04a0e6d1bb1bc3d6edfd14f1d
Author: Virp0 <bhvirpatel@gmail.com>
Date: 2026-07-26 20:26:09 -0700
Commit message:
Commit: 6b2082db2f1a7ef04a0e6d1bb1bc3d6edfd14f1d
Author: Virp0 <bhvirpatel@gmail.com>
Date: 2026-07-26 20:26:09 -0700
Commit message:
Delete inst/extdata/metadata.csv
Package: TSENAT
Commit: 61a223ef95c2eaaa3e03f1f9ee64569d27dba57f
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-28 03:24:42 +0200
Commit message:
Commit: 61a223ef95c2eaaa3e03f1f9ee64569d27dba57f
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-28 03:24:42 +0200
Commit message:
Fix Biocheck
Package: TSENAT
Commit: 037b48e089699352f238b16466593939fc5bac29
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-28 02:42:14 +0200
Commit message:
Commit: 037b48e089699352f238b16466593939fc5bac29
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-28 02:42:14 +0200
Commit message:
Fix bugs
Package: TSENAT
Commit: 3f60d8298ef3c8d5c00a774833f751ee3946e30f
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-28 01:26:43 +0200
Commit message:
Commit: 3f60d8298ef3c8d5c00a774833f751ee3946e30f
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-28 01:26:43 +0200
Commit message:
Simplify appendix A
Package: TSENAT
Commit: 26b542a27fb0f56bf0ec0cb6300ed828bb5b26f1
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-28 01:19:14 +0200
Commit message:
Commit: 26b542a27fb0f56bf0ec0cb6300ed828bb5b26f1
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-28 01:19:14 +0200
Commit message:
Fix bug bootstrap CIs
Package: TSENAT
Commit: 4d793b837b128067bf8d36ba7c7e652c6157f5f0
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-28 00:56:05 +0200
Commit message:
Commit: 4d793b837b128067bf8d36ba7c7e652c6157f5f0
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-28 00:56:05 +0200
Commit message:
Improve TSENAT vignette
Package: TSENAT
Commit: 65cf235a1eff2919cc787d2e7f7dabbe00bb9c6f
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-28 00:37:04 +0200
Commit message:
Commit: 65cf235a1eff2919cc787d2e7f7dabbe00bb9c6f
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-28 00:37:04 +0200
Commit message:
Refactorization
Package: TSENAT
Commit: 1ed0dc1dcab960f6631ca91db53da3661156be7c
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-28 00:06:10 +0200
Commit message:
Commit: 1ed0dc1dcab960f6631ca91db53da3661156be7c
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-28 00:06:10 +0200
Commit message:
Fix tests
Package: TSENAT
Commit: 9dfb727b40d71c02beeecb0cd7e4484abce1bb71
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-27 23:54:00 +0200
Commit message:
Commit: 9dfb727b40d71c02beeecb0cd7e4484abce1bb71
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-27 23:54:00 +0200
Commit message:
Increase coverage
Package: TSENAT
Commit: 7f558e39b796eee3216df946a6da5e3a46d8c2f8
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-27 23:23:38 +0200
Commit message:
Commit: 7f558e39b796eee3216df946a6da5e3a46d8c2f8
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-27 23:23:38 +0200
Commit message:
Increase coverage
Package: TSENAT
Commit: 63f79f39be62a021fa9704318347c0fa5e382acd
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-27 16:13:11 +0200
Commit message:
Commit: 63f79f39be62a021fa9704318347c0fa5e382acd
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-27 16:13:11 +0200
Commit message:
Remove NON-ASCII
Package: TSENAT
Commit: 9d9c00e362af643aaeeb06ef386b2d623fd00bcb
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-27 15:33:39 +0200
Commit message:
Commit: 9d9c00e362af643aaeeb06ef386b2d623fd00bcb
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-27 15:33:39 +0200
Commit message:
Fix bug ART
Package: TSENAT
Commit: b37df7e29bc5417ff456c2ccc09551d010e9bdda
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-27 15:20:31 +0200
Commit message:
Commit: b37df7e29bc5417ff456c2ccc09551d010e9bdda
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-27 15:20:31 +0200
Commit message:
Improve plots
Package: TSENAT
Commit: b672f7d7a388734ea2f5d738bd6d7ab7d3203a5a
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-27 14:31:48 +0200
Commit message:
Commit: b672f7d7a388734ea2f5d738bd6d7ab7d3203a5a
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-27 14:31:48 +0200
Commit message:
Improve figure titles
Package: TSENAT
Commit: e94093209664c60f9e27a1a0f71ff1b561e070a9
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-27 14:03:29 +0200
Commit message:
Commit: e94093209664c60f9e27a1a0f71ff1b561e070a9
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-27 14:03:29 +0200
Commit message:
Refactoring
Package: TSENAT
Commit: 66fa419ff409f06f8102fefb9c2bf3675aa31035
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-27 12:47:10 +0200
Commit message:
Commit: 66fa419ff409f06f8102fefb9c2bf3675aa31035
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-27 12:47:10 +0200
Commit message:
Update plots updates
Package: TSENAT
Commit: 5d654ec2d525679a0ff67f35257a35e1bbdcd963
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 23:40:37 +0200
Commit message:
Commit: 5d654ec2d525679a0ff67f35257a35e1bbdcd963
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 23:40:37 +0200
Commit message:
Fix references
Package: TSENAT
Commit: 0edf85ed90e40ba46dba7e03fbb1f9d08b50d6a4
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 23:37:01 +0200
Commit message:
Commit: 0edf85ed90e40ba46dba7e03fbb1f9d08b50d6a4
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 23:37:01 +0200
Commit message:
Fix references
Package: TSENAT
Commit: a5a9a34feaf4944965f270f556368a65cc995daa
Author: Cristóbal Gallardo Alba <gallardoalbac@gmail.com>
Date: 2026-07-26 22:28:28 +0200
Commit message:
Commit: a5a9a34feaf4944965f270f556368a65cc995daa
Author: Cristóbal Gallardo Alba <gallardoalbac@gmail.com>
Date: 2026-07-26 22:28:28 +0200
Commit message:
Merge branch 'stable' into devel
Package: TSENAT
Commit: 4fec7967976da98ec2aca580e18d0d5a2d081852
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 22:26:27 +0200
Commit message:
Commit: 4fec7967976da98ec2aca580e18d0d5a2d081852
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 22:26:27 +0200
Commit message:
Fix bug tabular report
Package: TSENAT
Commit: 507a0cd60e0d06000c41376e1a230e4ea42c9cf6
Author: Cristóbal Gallardo Alba <gallardoalbac@gmail.com>
Date: 2026-07-26 22:11:17 +0200
Commit message:
Commit: 507a0cd60e0d06000c41376e1a230e4ea42c9cf6
Author: Cristóbal Gallardo Alba <gallardoalbac@gmail.com>
Date: 2026-07-26 22:11:17 +0200
Commit message:
Upgrade TSENAT v.0.99.33 (#63) Comprehensive audit and fix of statistical implementation bugs across 15 R source files, identified via systematic code review with numerical verification. Covers core statistical methods (Hochberg correction, GEE bias-correction, bootstrap CIs, AR(1) estimation, LMM/GEE model validation) plus jackknife diagnostics, M-estimation, paired bootstrap, Storey π₀, Westfall-Young permutation, and entropy/divergence helpers. Also includes supporting code refactoring: pipeline stage extraction, input validation helpers, and modular assumption checks.
Package: igvShiny
Commit: 686f54b8b4a96b0da547ace4252881b58ac408b4
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-28 11:58:42 +0200
Commit message:
Commit: 686f54b8b4a96b0da547ace4252881b58ac408b4
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-28 11:58:42 +0200
Commit message:
feat: let alignment tracks sort reads by a bam tag at load time (#104) (#150) * feat: let alignment tracks sort reads by a bam tag at load time (#104) igv.js reads a sort object from the alignment track config, but the allowlist dropped it before it reached the browser, so the only way to sort by HP was the right-click menu. Allowing "sort" through covers every igv.js sort option (TAG, BASE, STRAND, ...) without a new argument on each bam loader. * test: extend the sort-by-tag check to the cram and local bam loaders
Package: OSCA.advanced
Commit: 2f1050180630665e196962cde3c2742ddd066a51
Author: lgeistlinger <ludwig.geistlinger@gmail.com>
Date: 2026-07-28 05:26:32 -0400
Commit message:
Commit: 2f1050180630665e196962cde3c2742ddd066a51
Author: lgeistlinger <ludwig.geistlinger@gmail.com>
Date: 2026-07-28 05:26:32 -0400
Commit message:
replace deprecated scran::convertTo with edgeR::SE2DGEList
Package: igvShiny
Commit: 2b5a6a9320f4254c635d3e0891b163e04ac30194
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-28 11:08:27 +0200
Commit message:
Commit: 2b5a6a9320f4254c635d3e0891b163e04ac30194
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-28 11:08:27 +0200
Commit message:
fix: take the dead asset URLs out of the stock genome definitions (#143) (#148) The scheduled asset check found nine URLs the package points at that no longer resolve. Six of them are ours to fix, and none of them needs a file put back on a server: tair10 is in the igv.js registry with a UCSC twoBit sequence and a RefSeq track, so the bare id replaces the fasta, index, alias file and GFF3 we used to host. Chromosomes now arrive under their RefSeq accessions rather than the lowered chr names of the old GFF3. rhos is in no registry, but UCSC publishes the same assembly as an assembly hub. GCF_000012905.2 is ASM1290v2 - the accession the old self-hosted filenames already carried - so sequence, alias, chrom sizes and genes all come from there. The hg19 Gencode v18 track came from the igv.broadinstitute.org s3 bucket, which answers 403. The registry entry for hg19 carries a RefSeq All track, so nothing needs to replace it. The GWASTrack demo pointed at igv.org.demo for a file that bucket no longer has; the same table is already served next to the package's own examples.
Package: Rarr
Commit: d63c037d7027b4256d61cc9406bf6c25dbf83fd8
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-28 10:14:13 +0200
Commit message:
Commit: d63c037d7027b4256d61cc9406bf6c25dbf83fd8
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-28 10:14:13 +0200
Commit message:
Update snapshot for v3 consolidated metadata
Package: Rarr
Commit: 19ba37a196a3e74333801fe4c7afec5d66c1eaed
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-28 10:05:45 +0200
Commit message:
Commit: 19ba37a196a3e74333801fe4c7afec5d66c1eaed
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-28 10:05:45 +0200
Commit message:
Exclude root metadata when consolidating
Package: Rarr
Commit: 75f1a4f08c317037c1950f78f5681539c001947f
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-28 09:29:39 +0200
Commit message:
Commit: 75f1a4f08c317037c1950f78f5681539c001947f
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-28 09:29:39 +0200
Commit message:
Bump version
Package: Rarr
Commit: 32ac066129e42d87e62d345834f77f466980b708
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-28 09:29:09 +0200
Commit message:
Commit: 32ac066129e42d87e62d345834f77f466980b708
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-28 09:29:09 +0200
Commit message:
Do not include self and parent when listing store contents
Package: Rarr
Commit: 3ccad8b52d17c5fa3e70a7b18cbe7e51a5f271b8
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-27 10:07:31 +0200
Commit message:
Commit: 3ccad8b52d17c5fa3e70a7b18cbe7e51a5f271b8
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-27 10:07:31 +0200
Commit message:
Run ruff
Package: igvShiny
Commit: 8257d8ed1dec7026015a20426947ca2e16ed599b
Author: Mateusz <gladkiimateusz@gmail.com>
Date: 2026-07-28 10:35:11 +0200
Commit message:
Commit: 8257d8ed1dec7026015a20426947ca2e16ed599b
Author: Mateusz <gladkiimateusz@gmail.com>
Date: 2026-07-28 10:35:11 +0200
Commit message:
fix: keep locus deduplication per widget, not per page (#126) (#147) The locuschange handler wrote each widget's locus onto its own container but compared the new value against window.chromLocString, a single global for the whole page. Two widgets on one page reaching the same locus meant the first one to fire claimed the value and the second one's currentGenomicRegion event was dropped as a duplicate. Compare against the container's own previous locus instead, and drop the global along with the reset that ran on every createBrowser. The new headless test drives two widgets to the same region and fails on the old handler with an empty second output.
Package: eisaR
Commit: 6dc6fa61291de6291c1ce0d26d2fa6ace3407577
Author: Michael Stadler <stadler.michael@gmail.com>
Date: 2026-07-28 10:29:07 +0200
Commit message:
Commit: 6dc6fa61291de6291c1ce0d26d2fa6ace3407577
Author: Michael Stadler <stadler.michael@gmail.com>
Date: 2026-07-28 10:29:07 +0200
Commit message:
Merge pull request #42 from fmicompbio/fix-tests Fix tests
Package: eisaR
Commit: 28653962fd57d6b29c357311aa581fa6bedcd752
Author: Michael Stadler <stadler.michael@gmail.com>
Date: 2026-07-28 10:15:54 +0200
Commit message:
Commit: 28653962fd57d6b29c357311aa581fa6bedcd752
Author: Michael Stadler <stadler.michael@gmail.com>
Date: 2026-07-28 10:15:54 +0200
Commit message:
Merge pull request #43 from fmicompbio/ggplot Use ggplot2 for plotEISA(), add identity line and set aspect ratio to 1
Package: eisaR
Commit: 388a825ba1ee722dcde0f56e5184040d4bea324b
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2026-07-28 10:01:21 +0200
Commit message:
Commit: 388a825ba1ee722dcde0f56e5184040d4bea324b
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2026-07-28 10:01:21 +0200
Commit message:
Update NEWS
Package: eisaR
Commit: 1dca15023c2242126b9cc9157e398e8f311d26cc
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2026-07-28 10:00:30 +0200
Commit message:
Commit: 1dca15023c2242126b9cc9157e398e8f311d26cc
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2026-07-28 10:00:30 +0200
Commit message:
Keep (but ignore) ellipsis in plotEISA
Package: eisaR
Commit: 1966bae0a6df08dbb2bf05c5a9c3c6bc5b5cf63e
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2026-07-20 20:28:21 +0200
Commit message:
Commit: 1966bae0a6df08dbb2bf05c5a9c3c6bc5b5cf63e
Author: Charlotte Soneson <charlottesoneson@gmail.com>
Date: 2026-07-20 20:28:21 +0200
Commit message:
Use ggplot2 for plotEISA(), add identity line and set aspect ratio to 1
Package: eisaR
Commit: 99cab33c7da6d7f0917e777ca20326cdcaa255d1
Author: mbstadler <stadler.michael@gmail.com>
Date: 2026-07-08 08:29:20 +0200
Commit message:
Commit: 99cab33c7da6d7f0917e777ca20326cdcaa255d1
Author: mbstadler <stadler.michael@gmail.com>
Date: 2026-07-08 08:29:20 +0200
Commit message:
add manual workflow dispatch to GHA
Package: eisaR
Commit: 08346ff0208fbdeb84a193030e8c0bfd502347f7
Author: mbstadler <stadler.michael@gmail.com>
Date: 2026-07-07 13:32:45 +0200
Commit message:
Commit: 08346ff0208fbdeb84a193030e8c0bfd502347f7
Author: mbstadler <stadler.michael@gmail.com>
Date: 2026-07-07 13:32:45 +0200
Commit message:
bump version
Package: eisaR
Commit: a6a0d75d76e9bc28aec7ce17b9240838f1a34028
Author: mbstadler <stadler.michael@gmail.com>
Date: 2026-07-07 13:32:38 +0200
Commit message:
Commit: a6a0d75d76e9bc28aec7ce17b9240838f1a34028
Author: mbstadler <stadler.michael@gmail.com>
Date: 2026-07-07 13:32:38 +0200
Commit message:
use "[" instead of subset on GRanges objects
Package: eisaR
Commit: 2e01a87b402b0664c08c1ed59f6df2c992171911
Author: mbstadler <stadler.michael@gmail.com>
Date: 2026-07-07 13:29:10 +0200
Commit message:
Commit: 2e01a87b402b0664c08c1ed59f6df2c992171911
Author: mbstadler <stadler.michael@gmail.com>
Date: 2026-07-07 13:29:10 +0200
Commit message:
update docs
Package: eisaR
Commit: d934725b8ec1fbbcd666178362f9afea72b89128
Author: mbstadler <stadler.michael@gmail.com>
Date: 2026-07-07 13:28:08 +0200
Commit message:
Commit: d934725b8ec1fbbcd666178362f9afea72b89128
Author: mbstadler <stadler.michael@gmail.com>
Date: 2026-07-07 13:28:08 +0200
Commit message:
add .lintr to .Rbuildignore
Package: eisaR
Commit: e7448d98c730838512a4788dcc3bc40a087860c2
Author: mbstadler <stadler.michael@gmail.com>
Date: 2026-07-07 13:27:53 +0200
Commit message:
Commit: e7448d98c730838512a4788dcc3bc40a087860c2
Author: mbstadler <stadler.michael@gmail.com>
Date: 2026-07-07 13:27:53 +0200
Commit message:
add missing import for setNames
Package: igvShiny
Commit: e83c6731b6dff15732d915528b7bf712e6caa546
Author: Mateusz <gladkiimateusz@gmail.com>
Date: 2026-07-28 10:21:59 +0200
Commit message:
Commit: e83c6731b6dff15732d915528b7bf712e6caa546
Author: Mateusz <gladkiimateusz@gmail.com>
Date: 2026-07-28 10:21:59 +0200
Commit message:
fix: resolve stock genomes through the igv.js 3.x registry, drop dead builds (#107, #116) (#145) * fix: resolve stock genomes through the igv.js 3.x registry (#107) Drop the mm10/danRer11 reference workaround added in #114: igv.js 3.8.4 resolves both from https://igv.org/genomes/genomes3.json by bare id, and so does rn6, which the workaround never covered. get_css_genomes() still read the 2.x registry, which lists ten ids the bundled igv.js cannot resolve by name (chm13v1.1, dmel_r5.9, ASM294v2, ASM985889v3, NC_016856.1 and five accession ids it can reach only through the hub fallback). Point it at genomes3.json instead. Remove four unused igv.js builds and lib/igv.css, which nothing loads: 3.x attaches its own stylesheet to the shadow root it creates. The three standalone examples now point at the bundled 3.8.4 build. Sequence data for stock genomes comes from UCSC as .2bit, preferred over the registry entry's fastaURL where both are listed; the vignette says so and names the outage it implies. * docs: separate registry lookup from sequence fetching, cover the 3.x lookup CodeRabbit on #145: R does download the registry to validate a stock genome name, so the vignette must not claim igvShiny fetches nothing - only that it fetches no sequence data. The genomeSpec test now asserts the registry reports the ids issue #107 was about. * fix: finish the 2.x cleanup in the examples, guard the registry assertions Review on #145: The two ESM example pages still imported igv 2.6.8 from jsdelivr while the other three moved to the bundled 3.8.4 build; both now pin 3.8.4. This also matters for spliceJunctionTrack.html, the reference page for #103. get_css_genomes() falls back to the eight built-in ids when igv.org cannot be reached, which would fail the length and id assertions during someone else's outage and look like a code regression. The test now skips in that case, and the fallback list itself is asserted before the live call. * chore: drop the stale stylesheet from the arcs example The page linked a copy of the 2.x igv.css. Since 3.x builds its browser in a shadow root and attaches its own stylesheet there, a page-level sheet reaches nothing; this was the last 2.x artefact under igv.js.examples.
Package: gDRutils
Commit: a7ca4cc111147833dc766ad739902ecdd8b7ed6c
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-28 06:51:57 +0200
Commit message:
Commit: a7ca4cc111147833dc766ad739902ecdd8b7ed6c
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-28 06:51:57 +0200
Commit message:
Merge pull request #191 from gdrplatform/GDR-3459 Optimize split_SE_components and df_to_bm_assay performance
Package: gDRutils
Commit: a098005c5270de5294f86ce1b9f81cbe469e44a0
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-27 16:22:23 +0200
Commit message:
Commit: a098005c5270de5294f86ce1b9f81cbe469e44a0
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-27 16:22:23 +0200
Commit message:
fix: use as.data.frame() with nolint instead of S4Vectors::DataFrame — lighter object, same identical() fix
Package: gDRutils
Commit: c1ac5b73e86f4f1c61932c6bf55a863d299e5410
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-27 16:20:17 +0200
Commit message:
Commit: c1ac5b73e86f4f1c61932c6bf55a863d299e5410
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-27 16:20:17 +0200
Commit message:
fix: use S4Vectors::DataFrame instead of as.data.frame() in split_SE_components — avoids undesirable_function_linter warning while preserving identical() compatibility (GDR-3459)
Package: gDRutils
Commit: 000a04c2438837d29183e605f226af8c2b4756b1
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-27 16:13:02 +0200
Commit message:
Commit: 000a04c2438837d29183e605f226af8c2b4756b1
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-27 16:13:02 +0200
Commit message:
ci: trigger new gdrgenesis run after gdrin MR!107 merge
Package: gDRutils
Commit: 4bd093f234c74429761681ad1b0f0ac677d882a5
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-27 10:59:46 +0200
Commit message:
Commit: 4bd093f234c74429761681ad1b0f0ac677d882a5
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-27 10:59:46 +0200
Commit message:
ci: retrigger after gdrin MR!107 merge
Package: gDRutils
Commit: ca0ebf3353d3ce79adaeab327631edda58a3f4c0
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-24 19:06:29 +0200
Commit message:
Commit: ca0ebf3353d3ce79adaeab327631edda58a3f4c0
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-24 19:06:29 +0200
Commit message:
fix: convert exp_md to data.frame in split_SE_components — prevents data.table .internal.selfref breaking identical() in pipeline tests (GDR-3459)
Package: gDRutils
Commit: 640a216375200ad4fb124f09db9930a813865c78
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-24 09:39:26 +0200
Commit message:
Commit: 640a216375200ad4fb124f09db9930a813865c78
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-24 09:39:26 +0200
Commit message:
style: fix NEWS.md entry to start with imperative verb
Package: gDRutils
Commit: 44817e890c23cf5f8fdcd580b7bef9677b3ab537
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-23 07:12:46 +0200
Commit message:
Commit: 44817e890c23cf5f8fdcd580b7bef9677b3ab537
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-23 07:12:46 +0200
Commit message:
style: fix NEWS.md entry to start with imperative verb
Package: gDRutils
Commit: fe533d5a2f79f05914f0fc3a3813662868763338
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-22 22:20:47 +0200
Commit message:
Commit: fe533d5a2f79f05914f0fc3a3813662868763338
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-22 22:20:47 +0200
Commit message:
ci: retrigger pipeline
Package: gDRutils
Commit: 9a9e8a6667e38682398c14358bbb03cb45d35f67
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-21 09:06:40 +0200
Commit message:
Commit: 9a9e8a6667e38682398c14358bbb03cb45d35f67
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-21 09:06:40 +0200
Commit message:
style: address Janina review — remove leading blank line, fix NEWS.md bullet, regenerate docs
Package: gDRutils
Commit: 71d7ddbc1d0eb0e140568271cc28f6d5367e1f7d
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-20 09:07:35 +0200
Commit message:
Commit: 71d7ddbc1d0eb0e140568271cc28f6d5367e1f7d
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-20 09:07:35 +0200
Commit message:
chore: merge main into GDR-3459, bump to 1.11.6
Package: gDRutils
Commit: 5351697c01f00b2ebb6d69b719941c10ab62b8a3
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-13 10:04:04 +0200
Commit message:
Commit: 5351697c01f00b2ebb6d69b719941c10ab62b8a3
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-13 10:04:04 +0200
Commit message:
fix: graceful fallback for incomplete precomputed_metadata
Package: gDRutils
Commit: 2b87260d01b3ba9782301b1e71bf9c5837822b7b
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-06 08:36:01 +0200
Commit message:
Commit: 2b87260d01b3ba9782301b1e71bf9c5837822b7b
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-06 08:36:01 +0200
Commit message:
chore: resolve merge conflicts with main
Package: gDRutils
Commit: d443e369f1aff74e491653330a5d62aa2face2a5
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-01 11:38:22 +0200
Commit message:
Commit: d443e369f1aff74e491653330a5d62aa2face2a5
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-01 11:38:22 +0200
Commit message:
docs: simplify NEWS.md entry
Package: gDRutils
Commit: 5f0f594b4a3817c38fade68d2687201b5c4548ba
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-01 11:32:38 +0200
Commit message:
Commit: 5f0f594b4a3817c38fade68d2687201b5c4548ba
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-07-01 11:32:38 +0200
Commit message:
refactor: apply code review suggestions for split_SE_components and df_to_bm_assay
Package: gDRutils
Commit: bbf32da2ccf9fa21345f9bf3cc542865c6f74ab9
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-06-30 12:40:39 +0200
Commit message:
Commit: bbf32da2ccf9fa21345f9bf3cc542865c6f74ab9
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-06-30 12:40:39 +0200
Commit message:
test: fix BumpyMatrix comparison in df_to_bm_assay test
Package: gDRutils
Commit: d0f3926dc5a1f8185e48df3ef1e18f6f89bb7540
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-06-30 12:37:56 +0200
Commit message:
Commit: d0f3926dc5a1f8185e48df3ef1e18f6f89bb7540
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-06-30 12:37:56 +0200
Commit message:
perf: optimize split_SE_components with data.table ops, vectorized paste, and uniqueN
Package: gDRutils
Commit: 6ab9afa353c3324a6907a0fb1f48a940c13c9b86
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-06-30 12:32:35 +0200
Commit message:
Commit: 6ab9afa353c3324a6907a0fb1f48a940c13c9b86
Author: Arkadiusz Gladki <arkadiusz.gladki@contractors.roche.com>
Date: 2026-06-30 12:32:35 +0200
Commit message:
feat: add precomputed_metadata param to df_to_bm_assay to skip redundant split_SE_components
Package: Seqtometry
Commit: 9432878f7ea926e93b431b651d0a20cc82ef3db3
Author: Robert Kousnetsov <robert.kousnetsov@health.slu.edu>
Date: 2026-07-27 22:50:24 -0500
Commit message:
Commit: 9432878f7ea926e93b431b651d0a20cc82ef3db3
Author: Robert Kousnetsov <robert.kousnetsov@health.slu.edu>
Date: 2026-07-27 22:50:24 -0500
Commit message:
Version bump to v1.1.1
Package: VDJdive
Commit: 8089786460f859656d57f86fbc3b2104b668669f
Author: Kelly Street <street.kelly@gmail.com>
Date: 2026-07-27 13:33:40 -0700
Commit message:
Commit: 8089786460f859656d57f86fbc3b2104b668669f
Author: Kelly Street <street.kelly@gmail.com>
Date: 2026-07-27 13:33:40 -0700
Commit message:
Merge remote-tracking branch 'upstream/devel' into devel
Package: VDJdive
Commit: 9749beb1f1465fdb77f1a6dc8a1af8cee5118433
Author: Kelly Street <street.kelly@gmail.com>
Date: 2026-04-27 15:45:42 -0700
Commit message:
Commit: 9749beb1f1465fdb77f1a6dc8a1af8cee5118433
Author: Kelly Street <street.kelly@gmail.com>
Date: 2026-04-27 15:45:42 -0700
Commit message:
Delete .BBSoptions per email from Andres Wokaty
Package: VDJdive
Commit: 12f6ff94fe9eb6cae9bb9a59206336cd2e3d6528
Author: Kelly Street <street.kelly@gmail.com>
Date: 2026-04-27 15:44:18 -0700
Commit message:
Commit: 12f6ff94fe9eb6cae9bb9a59206336cd2e3d6528
Author: Kelly Street <street.kelly@gmail.com>
Date: 2026-04-27 15:44:18 -0700
Commit message:
Add unsupported platforms configuration for Windows
Package: VDJdive
Commit: 5bae434aa5161ae82b345e5058989b6595d02675
Author: Kelly Street <street.kelly@gmail.com>
Date: 2024-05-22 10:19:55 -0700
Commit message:
Commit: 5bae434aa5161ae82b345e5058989b6595d02675
Author: Kelly Street <street.kelly@gmail.com>
Date: 2024-05-22 10:19:55 -0700
Commit message:
rcpp
Package: igblastr
Commit: d84c07cee69e19679296f486c4000dcc90efe67a
Author: Hervé Pagès <hpages.on.github@gmail.com>
Date: 2026-07-27 13:28:14 -0700
Commit message:
Commit: d84c07cee69e19679296f486c4000dcc90efe67a
Author: Hervé Pagès <hpages.on.github@gmail.com>
Date: 2026-07-27 13:28:14 -0700
Commit message:
oops
Package: igblastr
Commit: cfc92715f4912019761c969a1a61f946483a5031
Author: Hervé Pagès <hpages.on.github@gmail.com>
Date: 2026-07-27 12:59:32 -0700
Commit message:
Commit: cfc92715f4912019761c969a1a61f946483a5031
Author: Hervé Pagès <hpages.on.github@gmail.com>
Date: 2026-07-27 12:59:32 -0700
Commit message:
igblastr 1.3.17: Add net_charge() and extract_region_net_charge() See '?net_charge' for the details.
Package: biotmle
Commit: e86a3da16d1cbd076c0f1aac44b412044f9601c2
Author: nima hejazi <nh@nimahejazi.org>
Date: 2026-07-27 14:05:30 -0400
Commit message:
Commit: e86a3da16d1cbd076c0f1aac44b412044f9601c2
Author: nima hejazi <nh@nimahejazi.org>
Date: 2026-07-27 14:05:30 -0400
Commit message:
Merge pull request #80 from nhejazi/drop-superheat replace superheat with ggplot
Package: biotmle
Commit: 0fc6911afc821b92a0181860c801140b53a38841
Author: Nima Hejazi <nh@nimahejazi.org>
Date: 2026-07-27 13:51:08 -0400
Commit message:
Commit: 0fc6911afc821b92a0181860c801140b53a38841
Author: Nima Hejazi <nh@nimahejazi.org>
Date: 2026-07-27 13:51:08 -0400
Commit message:
respond to biocCheck
Package: biotmle
Commit: 0a4249b0782c330247cdcfd151113815c9a2244d
Author: Nima Hejazi <nh@nimahejazi.org>
Date: 2026-07-25 14:08:58 -0400
Commit message:
Commit: 0a4249b0782c330247cdcfd151113815c9a2244d
Author: Nima Hejazi <nh@nimahejazi.org>
Date: 2026-07-25 14:08:58 -0400
Commit message:
Modernize CI dependency installation Replace the hand-maintained dependency step with r-lib/actions/setup-r-dependencies@v2, which resolves CRAN and Bioconductor dependencies from DESCRIPTION via pak, installs prebuilt binaries from the public RSPM (enabled via use-public-rspm), caches them across runs, and handles system dependencies. This removes the manual BiocManager/remotes install and the Linux apt step, and makes the build far more resilient to the transient bioconductor.org timeouts that were failing the source-based installs. CI-only tools (rcmdcheck, covr, BiocCheck) are declared as extra-packages. Also drop the setup-tinytex step: the check runs --no-manual and the vignette renders to HTML, so no LaTeX is needed. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Package: biotmle
Commit: f3fd2aeec1383b68b8153e9e110f9cd0cce06088
Author: Nima Hejazi <nh@nimahejazi.org>
Date: 2026-07-25 12:26:54 -0400
Commit message:
Commit: f3fd2aeec1383b68b8153e9e110f9cd0cce06088
Author: Nima Hejazi <nh@nimahejazi.org>
Date: 2026-07-25 12:26:54 -0400
Commit message:
sync with bioc devel and bump version
Package: biotmle
Commit: 4038717cdb01e6fcf04ee18f23d647f40e02298d
Author: Nima Hejazi <nh@nimahejazi.org>
Date: 2026-07-25 11:54:21 -0400
Commit message:
Commit: 4038717cdb01e6fcf04ee18f23d647f40e02298d
Author: Nima Hejazi <nh@nimahejazi.org>
Date: 2026-07-25 11:54:21 -0400
Commit message:
Merge branch 'devel' of git.bioconductor.org:packages/biotmle
Package: biotmle
Commit: 18151b4a1f2659ffad30f6ad03a5dc4b4c992e9d
Author: Nima Hejazi <nh@nimahejazi.org>
Date: 2026-07-25 11:47:28 -0400
Commit message:
Commit: 18151b4a1f2659ffad30f6ad03a5dc4b4c992e9d
Author: Nima Hejazi <nh@nimahejazi.org>
Date: 2026-07-25 11:47:28 -0400
Commit message:
update checkout version
Package: biotmle
Commit: 663753e6601cea6d40048e2feaea48d4eede6ed8
Author: Nima Hejazi <nh@nimahejazi.org>
Date: 2026-07-25 11:45:28 -0400
Commit message:
Commit: 663753e6601cea6d40048e2feaea48d4eede6ed8
Author: Nima Hejazi <nh@nimahejazi.org>
Date: 2026-07-25 11:45:28 -0400
Commit message:
Update GitHub Actions to current major versions Bump the action refs that had gone stale: actions/checkout to v4 and the r-lib/actions steps (setup-r, setup-pandoc, setup-tinytex) to v2. The old refs run on retired Node versions and setup-r@master no longer resolves since r-lib renamed that branch, which is what broke the workflow. Only the action versions change; the dependency install, R CMD check, and BiocCheck steps are left as-is. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Package: biotmle
Commit: fe297646074e00eb362c3eaf0f382ebbd8849339
Author: Nima Hejazi <nh@nimahejazi.org>
Date: 2026-07-25 11:40:03 -0400
Commit message:
Commit: fe297646074e00eb362c3eaf0f382ebbd8849339
Author: Nima Hejazi <nh@nimahejazi.org>
Date: 2026-07-25 11:40:03 -0400
Commit message:
Bump version to 1.37.1 for Bioconductor devel and update NEWS Set the version to 1.37.1, one patch above Bioconductor's devel (1.37.0), as required to push a change to devel; the odd minor is correct for the devel branch (BioC 3.24). Retitle the release notes accordingly and fold in the row-dendrogram change. Record 1.18.0 through 1.37.0 as no significant updates, since that span is only Bioconductor's automatic per-release version increments; the local history had skipped straight from a stale "1.18.0 Forthcoming" entry. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Package: biotmle
Commit: b3746d25d4d36123b4deeb1df77fdedebe2bd2f1
Author: Nima Hejazi <nh@nimahejazi.org>
Date: 2026-07-25 11:39:40 -0400
Commit message:
Commit: b3746d25d4d36123b4deeb1df77fdedebe2bd2f1
Author: Nima Hejazi <nh@nimahejazi.org>
Date: 2026-07-25 11:39:40 -0400
Commit message:
Keep package checking cleanly under R CMD check and BiocCheck Replace message(paste(...)) with message(...) in heatmap_ic(); BiocCheck flags paste() inside a condition signal, and message() already concatenates its arguments, so the emitted text is unchanged. Ignore the artifacts that R CMD check and BiocCheck drop into the working tree (Rplots.pdf, *.tar.gz, *.Rcheck/, *.BiocCheck/) so repeated runs stay clean, and exclude the *.Rcheck/*.BiocCheck directories from the build. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Package: biotmle
Commit: 501f4070e6d5f20e8d33805a54873a907e039142
Author: Nima Hejazi <nh@nimahejazi.org>
Date: 2026-07-25 11:39:18 -0400
Commit message:
Commit: 501f4070e6d5f20e8d33805a54873a907e039142
Author: Nima Hejazi <nh@nimahejazi.org>
Date: 2026-07-25 11:39:18 -0400
Commit message:
Add optional row dendrogram to heatmap_ic() The heatmap gains a `row_dendrogram` argument that draws the biomarker hierarchical clustering as a dendrogram beside the heatmap, restoring the row dendrogram that superheat used to provide before it was replaced by ggplot2. Biomarkers are ordered by the clustering whether or not the tree is drawn, so the argument affects only the display; it defaults to FALSE to keep the plain ggplot as the default return value. When enabled, the dendrogram and heatmap are aligned and composed with patchwork, so the returned object is a patchwork composition that still inherits from ggplot. When there are too few biomarkers to cluster, the dendrogram is silently omitted and the plain heatmap is returned. The row clustering helper is split into cluster_fit() (returning the hclust fit, reused to draw the tree) and cluster_order() (returning just the ordering). Drawing the dendrogram adds ggdendro and patchwork to Imports. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Package: biotmle
Commit: b96ecc7a9bcf2ac1ad6c378df1b4c67f9aedcd93
Author: Nima Hejazi <nh@nimahejazi.org>
Date: 2026-07-23 12:11:49 -0400
Commit message:
Commit: b96ecc7a9bcf2ac1ad6c378df1b4c67f9aedcd93
Author: Nima Hejazi <nh@nimahejazi.org>
Date: 2026-07-23 12:11:49 -0400
Commit message:
replace superheat with ggplot; minor doc fixes
Package: biotmle
Commit: b13f8b4582fd1ebe4ca4e0dd9ce8452957728c41
Author: nima hejazi <nh@nimahejazi.org>
Date: 2021-10-14 13:57:12 -0400
Commit message:
Commit: b13f8b4582fd1ebe4ca4e0dd9ce8452957728c41
Author: nima hejazi <nh@nimahejazi.org>
Date: 2021-10-14 13:57:12 -0400
Commit message:
Merge pull request #79 from nhejazi/topTable-rownames
Package: biotmle
Commit: bd2b47516185f7064b0b28e1c8a7aa17e162b3cc
Author: Philippe Boileau <pboileau.swim@gmail.com>
Date: 2021-10-14 09:24:57 -0400
Commit message:
Commit: bd2b47516185f7064b0b28e1c8a7aa17e162b3cc
Author: Philippe Boileau <pboileau.swim@gmail.com>
Date: 2021-10-14 09:24:57 -0400
Commit message:
addressing row name filtering issue in heatmap_ic
Package: biotmle
Commit: f7c92d9d7e473ca264098540431408d36af45e22
Author: Philippe Boileau <pboileau.swim@gmail.com>
Date: 2021-10-13 18:04:25 -0400
Commit message:
Commit: f7c92d9d7e473ca264098540431408d36af45e22
Author: Philippe Boileau <pboileau.swim@gmail.com>
Date: 2021-10-13 18:04:25 -0400
Commit message:
fixing topTable rownames in modtest_ic
Package: DMRcaller
Commit: cae718d93dbdaa5ce393ad7e0849ba7fbdd3c6c3
Author: nrzabet <r.zabet@qmul.ac.uk>
Date: 2026-07-27 17:46:23 +0100
Commit message:
Commit: cae718d93dbdaa5ce393ad7e0849ba7fbdd3c6c3
Author: nrzabet <r.zabet@qmul.ac.uk>
Date: 2026-07-27 17:46:23 +0100
Commit message:
fixed cigarillo bug
Package: consICA
Commit: 56ea228695392933c65c05cb6c407f9f756a93a8
Author: Maryna Chepeleva <maryna.chepeleva@gmail.com>
Date: 2026-07-27 15:01:01 +0200
Commit message:
Commit: 56ea228695392933c65c05cb6c407f9f756a93a8
Author: Maryna Chepeleva <maryna.chepeleva@gmail.com>
Date: 2026-07-27 15:01:01 +0200
Commit message:
bump version 2.11.1 + NEWS
Package: consICA
Commit: b173012f287fa6c2982a060dd479f069cc5731ac
Author: Maryna Chepeleva <maryna.chepeleva@gmail.com>
Date: 2026-07-27 12:22:06 +0200
Commit message:
Commit: b173012f287fa6c2982a060dd479f069cc5731ac
Author: Maryna Chepeleva <maryna.chepeleva@gmail.com>
Date: 2026-07-27 12:22:06 +0200
Commit message:
[R][consICA] upd consensus assembly: bijective alignment + no main ic seed
Package: consICA
Commit: 19805f870f8aa8441a08fab4bf8cf93d2a371b72
Author: Maryna Chepeleva <maryna.chepeleva@gmail.com>
Date: 2026-07-27 12:12:29 +0200
Commit message:
Commit: 19805f870f8aa8441a08fab4bf8cf93d2a371b72
Author: Maryna Chepeleva <maryna.chepeleva@gmail.com>
Date: 2026-07-27 12:12:29 +0200
Commit message:
[R][saveReport] fix for ntry=1
Package: consICA
Commit: cba319a71a21067b40077752047cbfbb7668e061
Author: Maryna Chepeleva <maryna.chepeleva@gmail.com>
Date: 2026-07-27 11:41:18 +0200
Commit message:
Commit: cba319a71a21067b40077752047cbfbb7668e061
Author: Maryna Chepeleva <maryna.chepeleva@gmail.com>
Date: 2026-07-27 11:41:18 +0200
Commit message:
Merge remote-tracking branch 'upstream/devel'
Package: consICA
Commit: f42de04490c43185ad19a0d68a651428557eb2d1
Author: Maryna Chepeleva <maryna.chepeleva@gmail.com>
Date: 2026-04-16 16:17:07 +0200
Commit message:
Commit: f42de04490c43185ad19a0d68a651428557eb2d1
Author: Maryna Chepeleva <maryna.chepeleva@gmail.com>
Date: 2026-04-16 16:17:07 +0200
Commit message:
[R][survivaAnalysis] fix coeff sum for correct model
Package: igvShiny
Commit: da70ad81167c78a7c2a4fe8f6a59e9e943e7c0fd
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-27 13:14:17 +0200
Commit message:
Commit: da70ad81167c78a7c2a4fe8f6a59e9e943e7c0fd
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-27 13:14:17 +0200
Commit message:
fix: unpin the Connect Cloud demo from a package older than the demo itself (#146) * fix: unpin the Connect Cloud demo from a package older than the demo itself manifest.json recorded GithubSHA1 30f93f5 (1.9.6, 2026-07-17), and Connect Cloud installs that commit - GithubRef: master is decoration. The new GWAS button therefore called GWASTrack(chromosomeColorMap=) against a package that has no such argument. An error inside observeEvent ends the Shiny session, so the page greyed out with nothing on screen to explain it. Points the pin at c2a1159 (1.9.25, the merge of #144) and prints the installed igvShiny version in the sidebar footer, so the next version skew is visible instead of fatal. README says the pin is a commit, not a branch. * fix: use a NEWS verb the linter knows and stop promising the demo tracks master
Package: clusterProfiler
Commit: 0b2c59a885f4cf80cf133a926c2e31f3b765d5d5
Author: Guangchuang Yu <guangchuangyu@gmail.com>
Date: 2026-07-27 19:02:03 +0800
Commit message:
Commit: 0b2c59a885f4cf80cf133a926c2e31f3b765d5d5
Author: Guangchuang Yu <guangchuangyu@gmail.com>
Date: 2026-07-27 19:02:03 +0800
Commit message:
update docs
Package: clusterProfiler
Commit: 529bd7c42991f296cc468d21c2db3494c1708f06
Author: Guangchuang Yu <guangchuangyu@gmail.com>
Date: 2026-07-09 12:56:48 +0800
Commit message:
Commit: 529bd7c42991f296cc468d21c2db3494c1708f06
Author: Guangchuang Yu <guangchuangyu@gmail.com>
Date: 2026-07-09 12:56:48 +0800
Commit message:
nsea
Package: clusterProfiler
Commit: 49523f2d2ee69cb1c4e7a5eae3f8634ed211153c
Author: Guangchuang Yu <guangchuangyu@gmail.com>
Date: 2026-06-24 13:23:46 +0800
Commit message:
Commit: 49523f2d2ee69cb1c4e7a5eae3f8634ed211153c
Author: Guangchuang Yu <guangchuangyu@gmail.com>
Date: 2026-06-24 13:23:46 +0800
Commit message:
export gsonKO and allows converting uniprot to ko
Package: clusterProfiler
Commit: 440323c15557540b008f63b57f1df0cfad3816d6
Author: Guangchuang Yu <guangchuangyu@gmail.com>
Date: 2026-06-24 12:59:13 +0800
Commit message:
Commit: 440323c15557540b008f63b57f1df0cfad3816d6
Author: Guangchuang Yu <guangchuangyu@gmail.com>
Date: 2026-06-24 12:59:13 +0800
Commit message:
new algorithms/functions from enrichit
Package: clusterProfiler
Commit: 6532c9845ca9193f23b4a8ea061389cd3ea324ac
Author: Guangchuang Yu <guangchuangyu@gmail.com>
Date: 2026-06-23 17:26:00 +0800
Commit message:
Commit: 6532c9845ca9193f23b4a8ea061389cd3ea324ac
Author: Guangchuang Yu <guangchuangyu@gmail.com>
Date: 2026-06-23 17:26:00 +0800
Commit message:
get-ppi-network
Package: clusterProfiler
Commit: 69580b07a8c035868ac70d0e0dba430b4d6ea0f9
Author: Guangchuang Yu <guangchuangyu@gmail.com>
Date: 2026-06-22 15:36:37 +0800
Commit message:
Commit: 69580b07a8c035868ac70d0e0dba430b4d6ea0f9
Author: Guangchuang Yu <guangchuangyu@gmail.com>
Date: 2026-06-22 15:36:37 +0800
Commit message:
resotre eps parameter, #822
Package: clusterProfiler
Commit: 18fa6bce312eb435f74d2308994a9d55befa100c
Author: Guangchuang Yu <guangchuangyu@gmail.com>
Date: 2026-06-16 15:40:19 +0800
Commit message:
Commit: 18fa6bce312eb435f74d2308994a9d55befa100c
Author: Guangchuang Yu <guangchuangyu@gmail.com>
Date: 2026-06-16 15:40:19 +0800
Commit message:
bayes-enrich
Package: clusterProfiler
Commit: 9e29160e9101d96d72b78f5f5377d94cdf9b5bc8
Author: Guangchuang Yu <guangchuangyu@gmail.com>
Date: 2026-04-29 12:03:36 +0800
Commit message:
Commit: 9e29160e9101d96d72b78f5f5377d94cdf9b5bc8
Author: Guangchuang Yu <guangchuangyu@gmail.com>
Date: 2026-04-29 12:03:36 +0800
Commit message:
update bioc version
Package: clusterProfiler
Commit: 5b6b63b78f3ec1b2e6d17cce3ccf61e359e4c237
Author: Guangchuang Yu <guangchuangyu@gmail.com>
Date: 2026-04-29 12:02:49 +0800
Commit message:
Commit: 5b6b63b78f3ec1b2e6d17cce3ccf61e359e4c237
Author: Guangchuang Yu <guangchuangyu@gmail.com>
Date: 2026-04-29 12:02:49 +0800
Commit message:
Merge remote-tracking branch 'upstream/devel' into devel
Package: clusterProfiler
Commit: f2b40e9e55d41ebdfb619fe983664d10c23b786c
Author: Guangchuang Yu <guangchuangyu@gmail.com>
Date: 2026-04-29 11:55:12 +0800
Commit message:
Commit: f2b40e9e55d41ebdfb619fe983664d10c23b786c
Author: Guangchuang Yu <guangchuangyu@gmail.com>
Date: 2026-04-29 11:55:12 +0800
Commit message:
update bioc version
Package: igvShiny
Commit: c2a1159e691d8f3846f6aaf6fcee2f9d0079d832
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-27 12:49:36 +0200
Commit message:
Commit: c2a1159e691d8f3846f6aaf6fcee2f9d0079d832
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-27 12:49:36 +0200
Commit message:
feat: let loadGwasTrack callers map gwas columns, and show it in the demo (#144) * feat: let loadGwasTrack callers map gwas columns, and show it in the demo #142 wired the column mapping into the GWASTrack class. loadGwasTrack, the function most callers reach for, still had no way to send one: the trackConfig allowlist dropped "columns" as an unsupported igv.js option. Adds it to the allowlist and documents both it and colorTable on the loadGwasTrack parameter. The Connect Cloud demo gains a button that renames the gwas table's columns to names igv.js cannot guess, then loads it with explicit column numbers and a chromosome color map - the two features have nowhere else to be seen. Verified in a headless browser: 2438 features parsed from the renamed table, chr19 purple, everything else gray from the "*" entry. * test: check loadGwasTrack passes the column mapping to igv.js
Package: vsclust
Commit: 64c2660c6b8223983023830417da0a7cee14464d
Author: veitveit <veits@bmb.sdu.dk>
Date: 2026-07-27 12:46:39 +0200
Commit message:
Commit: 64c2660c6b8223983023830417da0a7cee14464d
Author: veitveit <veits@bmb.sdu.dk>
Date: 2026-07-27 12:46:39 +0200
Commit message:
small fix
Package: igvShiny
Commit: 08581b7a30084eefb1359cd21797a39a26124a95
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-27 11:57:01 +0200
Commit message:
Commit: 08581b7a30084eefb1359cd21797a39a26124a95
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-27 11:57:01 +0200
Commit message:
feat: send the gwas column mapping and chromosome colors to igv.js (#142)
* feat: send the gwas column mapping and chromosome colors to igv.js
GWASTrack has taken chrom.col, pos.col and pval.col since it was written,
stored them in the S4 object, and never sent them anywhere. igv.js was
left guessing the layout from the header names it knows (chr/bp/p), so a
table spelled any other way drew an empty track - the flexibility #32
asks for was already in the signature, just not wired up.
display() now sends columns={chromosome,position,value}, which the igv.js
gwas parser reads 1-based, exactly as the constructor takes them.
The same message carries the new chromosomeColorMap argument through as
igv.js colorTable (#46), where a "*" entry colors every chromosome not
named explicitly. Both ride mergeExtraParameters, so no JS changes.
Column numbers are checked in the constructor: out of range meant an
empty track with no complaint from either side.
* fix: satisfy the gDRstyle linters and reject a repeated chromosome
toString() for paste(collapse) and NCOL() for ncol(), both flagged by
gDRstyle::lintPkgDirs. A colorTable is a JSON object, so a chromosome
named twice quietly loses one of its colors - the sanitizer now says so.
Adds the show() color-line coverage review asked for.
* test: check the out-of-range message names the offending column
Package: igvShiny
Commit: 3605f32948050330e00b9f55d2e0e41a6ca82cce
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-27 11:04:28 +0200
Commit message:
Commit: 3605f32948050330e00b9f55d2e0e41a6ca82cce
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-27 11:04:28 +0200
Commit message:
ci: check all three systems on pull requests again (#141) * ci: check all three systems on pull requests again The Linux-only pull request matrix added in #140 traded coverage for time that turned out not to exist: the 77-80 minute macOS and Windows runs it was sized against were cold-cache outliers. With the cache warm every job finishes in 5-8 minutes (nightly run 30243281490: macOS 5, Windows 8, Ubuntu 7), so the full matrix costs nothing worth saving. Drops the full-ci label and the labeled event type along with it. * ci: point XML_CONFIG at the Homebrew prefix that macos-latest actually uses
Package: GSVA
Commit: bdc1a12d7dfb2951d83a6f665f5e184e073a25be
Author: Robert Castelo <robert.castelo@upf.edu>
Date: 2026-07-27 09:45:06 +0200
Commit message:
Commit: bdc1a12d7dfb2951d83a6f665f5e184e073a25be
Author: Robert Castelo <robert.castelo@upf.edu>
Date: 2026-07-27 09:45:06 +0200
Commit message:
Bump version and added suggests dependencies
Package: GSVA
Commit: a0e24c658740ae7a04e400ecaed1e376d934c696
Author: Robert Castelo <robert.castelo@upf.edu>
Date: 2026-07-27 09:26:44 +0200
Commit message:
Commit: a0e24c658740ae7a04e400ecaed1e376d934c696
Author: Robert Castelo <robert.castelo@upf.edu>
Date: 2026-07-27 09:26:44 +0200
Commit message:
Added vignette on GSVA for spatial omics data
Package: vsclust
Commit: 0c3b8130de8e0a132a87a84443ee02950f8306f0
Author: veitveit <veits@bmb.sdu.dk>
Date: 2026-07-27 08:32:21 +0200
Commit message:
Commit: 0c3b8130de8e0a132a87a84443ee02950f8306f0
Author: veitveit <veits@bmb.sdu.dk>
Date: 2026-07-27 08:32:21 +0200
Commit message:
corrected bug with newer Rcpp versions
Package: RankMap
Commit: 5baba89dc5d95077a077c8f96a03c3d86b0a8566
Author: jinming-cheng <jinming.cheng2018@gmail.com>
Date: 2026-07-27 12:56:02 +0800
Commit message:
Commit: 5baba89dc5d95077a077c8f96a03c3d86b0a8566
Author: jinming-cheng <jinming.cheng2018@gmail.com>
Date: 2026-07-27 12:56:02 +0800
Commit message:
update vignette
Package: TSENAT
Commit: bffd9bd05f32b1a020552c117ab415c2badbeebf
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 21:29:24 +0200
Commit message:
Commit: bffd9bd05f32b1a020552c117ab415c2badbeebf
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 21:29:24 +0200
Commit message:
Additional bug review
Package: TSENAT
Commit: e707977cb69a79257ad28e3805e7548b0abf9aa1
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 17:04:55 +0200
Commit message:
Commit: e707977cb69a79257ad28e3805e7548b0abf9aa1
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 17:04:55 +0200
Commit message:
Improve documentation
Package: TSENAT
Commit: 38bab929d656fa19839986506344be64e6c4a01f
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 17:00:26 +0200
Commit message:
Commit: 38bab929d656fa19839986506344be64e6c4a01f
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 17:00:26 +0200
Commit message:
Improve documentation
Package: TSENAT
Commit: cebdf45477e351e68f01533e104f9408e66d2aa1
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 15:49:52 +0200
Commit message:
Commit: cebdf45477e351e68f01533e104f9408e66d2aa1
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 15:49:52 +0200
Commit message:
Restore README
Package: TSENAT
Commit: a36a846c26fdc6037ec955e6771827909ff55b21
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 15:46:57 +0200
Commit message:
Commit: a36a846c26fdc6037ec955e6771827909ff55b21
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 15:46:57 +0200
Commit message:
Update README structure
Package: TSENAT
Commit: 0b60e2a0cbd1e3b03e704bad7b9036218ad6fe38
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 15:43:38 +0200
Commit message:
Commit: 0b60e2a0cbd1e3b03e704bad7b9036218ad6fe38
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 15:43:38 +0200
Commit message:
Update README structure
Package: TSENAT
Commit: 04ac09c86e3eb213acc2155bedefc6a0a06ce914
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 14:53:34 +0200
Commit message:
Commit: 04ac09c86e3eb213acc2155bedefc6a0a06ce914
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 14:53:34 +0200
Commit message:
Revert circleci config
Package: TSENAT
Commit: 0b1e8f32d42ecd968a61761c0b8933bbfc93ab10
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 14:31:39 +0200
Commit message:
Commit: 0b1e8f32d42ecd968a61761c0b8933bbfc93ab10
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 14:31:39 +0200
Commit message:
Fix circle CI config
Package: TSENAT
Commit: b17d47b6bb573309cf5d87618c644994711ecd5d
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 14:21:40 +0200
Commit message:
Commit: b17d47b6bb573309cf5d87618c644994711ecd5d
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 14:21:40 +0200
Commit message:
Update news
Package: TSENAT
Commit: ecc321ea0c072b7e973c0df760c93cd49544dc70
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 14:11:02 +0200
Commit message:
Commit: ecc321ea0c072b7e973c0df760c93cd49544dc70
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 14:11:02 +0200
Commit message:
Fix circle CI config
Package: TSENAT
Commit: 90a247f4248ddfcccfffa8cd7e337926a64b14be
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 14:01:03 +0200
Commit message:
Commit: 90a247f4248ddfcccfffa8cd7e337926a64b14be
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 14:01:03 +0200
Commit message:
Fix circleci
Package: TSENAT
Commit: efb47501536cc6f2ab0d37d4f322f2553918aac3
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 13:51:10 +0200
Commit message:
Commit: efb47501536cc6f2ab0d37d4f322f2553918aac3
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 13:51:10 +0200
Commit message:
Fix circleci
Package: TSENAT
Commit: b9549aaa726448b81372ac7f4ddb80e3256d8a10
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 13:21:49 +0200
Commit message:
Commit: b9549aaa726448b81372ac7f4ddb80e3256d8a10
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 13:21:49 +0200
Commit message:
Remove trash from test
Package: TSENAT
Commit: 6b2eae05d1c88ab1e4d4632a3c731082b569defd
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 13:18:48 +0200
Commit message:
Commit: 6b2eae05d1c88ab1e4d4632a3c731082b569defd
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 13:18:48 +0200
Commit message:
Update circleci config
Package: TSENAT
Commit: d787651e0b21484990a905b0e4791ffca141f6c4
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 13:16:39 +0200
Commit message:
Commit: d787651e0b21484990a905b0e4791ffca141f6c4
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 13:16:39 +0200
Commit message:
Fix bugs and related tests
Package: TSENAT
Commit: defcecadb0b01adb98bd89c775a15a19be8a0490
Author: Cristóbal Gallardo Alba <gallardoalbac@gmail.com>
Date: 2026-07-26 06:22:16 +0200
Commit message:
Commit: defcecadb0b01adb98bd89c775a15a19be8a0490
Author: Cristóbal Gallardo Alba <gallardoalbac@gmail.com>
Date: 2026-07-26 06:22:16 +0200
Commit message:
Merge branch 'stable' into devel
Package: TSENAT
Commit: e37ee22ca7d8cdea8c131139de3171aa4205eefa
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 06:20:30 +0200
Commit message:
Commit: e37ee22ca7d8cdea8c131139de3171aa4205eefa
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 06:20:30 +0200
Commit message:
Remove duplicated
Package: TSENAT
Commit: 34fb0e8421ab82b43d8bd4948db64b1be60a3873
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 06:15:40 +0200
Commit message:
Commit: 34fb0e8421ab82b43d8bd4948db64b1be60a3873
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-26 06:15:40 +0200
Commit message:
Fix bugs
Package: TSENAT
Commit: ccbe7e1c06a6b95029b2493e9ae82ac6052ea7df
Author: Cristóbal Gallardo Alba <gallardoalbac@gmail.com>
Date: 2026-07-25 17:32:02 +0200
Commit message:
Commit: ccbe7e1c06a6b95029b2493e9ae82ac6052ea7df
Author: Cristóbal Gallardo Alba <gallardoalbac@gmail.com>
Date: 2026-07-25 17:32:02 +0200
Commit message:
Increase tests coverage (#61) Increase test coverage.
Package: TSENAT
Commit: dd0ec5cacdcee209ecac687360126d2aa6893de0
Author: Cristóbal Gallardo Alba <gallardoalbac@gmail.com>
Date: 2026-07-25 15:50:47 +0200
Commit message:
Commit: dd0ec5cacdcee209ecac687360126d2aa6893de0
Author: Cristóbal Gallardo Alba <gallardoalbac@gmail.com>
Date: 2026-07-25 15:50:47 +0200
Commit message:
Upgrade version 0.99.31 (#59) * Upgrade version
Package: igvShiny
Commit: 68d67bfc16f4874a179265855137ac7e3f21e540
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-26 18:44:50 +0200
Commit message:
Commit: 68d67bfc16f4874a179265855137ac7e3f21e540
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-26 18:44:50 +0200
Commit message:
ci: check Linux on pull requests, the full matrix on master and nightly (#140) macOS and Windows spend roughly 70 of their 80 minutes compiling the Bioc devel dependency tree from source. Devel publishes no binaries for either system and moves daily, so the package cache can never cover it - measured on 2026-07-26, Install BiocGenerics and the two dependency passes alone were 24, 22 and 8 minutes, against a 2-minute R CMD check. Linux runs inside the Bioconductor container and gets through the same work in a fraction of the time. Pull requests now check Linux only, so the answer arrives in about 15 minutes. The full matrix still runs where a slow answer is still useful: every push to master - so nothing reaches Bioconductor unchecked - plus a nightly schedule and any pull request labelled full-ci, for changes that touch the JS or the track loaders. A macOS or Windows regression now surfaces at the merge to master rather than on the pull request that caused it; the label is the escape hatch when a change looks platform-sensitive.
Package: igvShiny
Commit: e34f94827ccfa0d8940cfb729524f847081e8ddc
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-26 18:37:10 +0200
Commit message:
Commit: e34f94827ccfa0d8940cfb729524f847081e8ddc
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-26 18:37:10 +0200
Commit message:
chore: bump the GitHub Actions used in CI (#139) actions/upload-artifact was pinned to @master - a moving branch, not a release - while checkout and cache sat on v3, which GitHub is winding down: the v3 cache runner already reports "too old to run on GitHub Actions" in the workflow logs. The artifact names embed runner.os, the Bioc release and the R version, so they stay unique per matrix job and the v4 rule against reusing an artifact name in one run does not bite. The docker actions move up too, though that job stays off behind run_docker: false.
Package: scrapbook
Commit: 819d423b4143c792c00af7b9d3624e80449c9f0d
Author: LTLA <infinite.monkeys.with.keyboards@gmail.com>
Date: 2026-07-27 01:51:54 +1000
Commit message:
Commit: 819d423b4143c792c00af7b9d3624e80449c9f0d
Author: LTLA <infinite.monkeys.with.keyboards@gmail.com>
Date: 2026-07-27 01:51:54 +1000
Commit message:
Restored sanity checks for expected results that match text descriptions. Basically copied from OSCA, but should be more robust given the relative control we have over the dependencies.
Package: lcmsPlot
Commit: d9ab9daef0fc40e0ef62e91452ce6f00c751e0eb
Author: Ossama Edbali <ossedb@gmail.com>
Date: 2026-07-26 15:08:28 +0100
Commit message:
Commit: d9ab9daef0fc40e0ef62e91452ce6f00c751e0eb
Author: Ossama Edbali <ossedb@gmail.com>
Date: 2026-07-26 15:08:28 +0100
Commit message:
docs: add runnable examples to all exported man pages
BiocCheck failed its requirement that at least 80% of man pages
documenting exported objects have runnable examples: coverage was 25 of
33 (75.8%). Four pages wrapped their examples entirely in \dontrun{} and
referenced data that is not available (a .cdResult directory, a
LipidSearch export, an undefined raw_files), and the four precursor ion
purity layers had no examples at all.
All eight now execute. The purity examples build a purityA object from
the DDA files already shipped in inst/extdata/standards-mzml.zip, whose
MS2 scans carry real precursor selection and isolation-window metadata,
and are guarded with @examplesIf because msPurity is only suggested. The
Compound Discoverer scripting-node and LipidSearch examples write a
minimal vendor export to tempdir(), following the existing MZmine and
MS-DIAL examples, and point sample_paths at the shipped mzML files so the
documented plots extract real chromatograms rather than only building a
data source.
Coverage is now 33 of 33. Verified with R CMD check ("checking
examples ... OK") and a full BiocCheck run reporting 0 errors; the two
remaining warnings (odd y in the version number, R version dependency)
are pre-existing. Only roxygen comments changed, so no package logic is
affected.
Package: lcmsPlot
Commit: 90c12b31a1460644a685607bbb0a47b29d5e831f
Author: Ossama Edbali <ossedb@gmail.com>
Date: 2026-07-25 18:17:20 +0100
Commit message:
Commit: 90c12b31a1460644a685607bbb0a47b29d5e831f
Author: Ossama Edbali <ossedb@gmail.com>
Date: 2026-07-25 18:17:20 +0100
Commit message:
ci: use --ignore-vignettes so skipped vignettes do not fail the check Skipping vignette building on push and pull request left the package without an inst/doc directory, which made "checking files in 'vignettes'" and "checking package vignettes" warn. With error_on = "warning" those two warnings failed the run even though the check was otherwise clean. --no-vignettes only suppresses running vignette code and rebuilding outputs; it leaves the inst/doc consistency checks active. --ignore-vignettes skips all vignette tests and is the flag that belongs with --no-build-vignettes, so it replaces --no-vignettes rather than joining it. The scheduled and manually dispatched full check is unaffected: it still builds vignettes, so inst/doc exists and the checks run normally.
Package: lcmsPlot
Commit: 4ec1e4a0fe2ac6eb3bf06ad69c5371b0deb658f5
Author: Ossama Edbali <ossedb@gmail.com>
Date: 2026-07-25 17:57:02 +0100
Commit message:
Commit: 4ec1e4a0fe2ac6eb3bf06ad69c5371b0deb658f5
Author: Ossama Edbali <ossedb@gmail.com>
Date: 2026-07-25 17:57:02 +0100
Commit message:
ci: fix stale-cache dependency failure and cut check runtime The workflow ran for ~42 minutes and then failed at the test step with BiocParallel, MSnbase, xcms, MsExperiment, mzR, Spectra, MsBackendMsp and S4Vectors reported as required. Those Imports carry no version constraint, so remotes::dev_package_deps() -- which reads metadata off disk and never loads anything -- returned diff == 0 for each and the diff != 0 filter skipped them. devtools::test() then called requireNamespace() for real and the on-disk copies, compiled against a different R, failed to load. They came from the package cache: its key carried no R or Bioconductor version, so once the image was pinned from :devel to :3.23 the version-agnostic restore-key kept restoring an R-devel library into the 3.23 container. The cache key now includes the R and Bioconductor versions plus a CACHE_VERSION bust knob, and the library path is resolved from .libPaths() rather than hardcoded. A new purge step drops cached packages whose Built R minor version differs from the running R, and a verification gate calls requireNamespace() on every Depends/Imports entry immediately after installation, so this class of breakage now fails in ~2 minutes naming the offending packages instead of ~40. Runtime is addressed separately. The bare BiocManager::install(update = TRUE) updated every preinstalled package in the image and is gone; devtools (~80 source-compiled packages) is replaced by testthat::test_local(); dependency installation runs with Ncpus set. R CMD check gains --no-build-vignettes, since --no-vignettes only skips checking them while R CMD build was still running findChromPeaks, Obiwarp adjustRtime and groupChromPeaks over faahKO on every push, and --no-tests drops the duplicate test run. A weekly schedule and workflow_dispatch trigger run the full check with vignettes and tests to preserve Bioconductor compliance, and a concurrency group cancels superseded runs. Adding version constraints to the Bioconductor Imports in DESCRIPTION would remove the root cause at source and is worth doing separately.
Package: lcmsPlot
Commit: 6e45639a9973f2361fe7bab34c7154f5f79765b9
Author: Ossama Edbali <ossedb@gmail.com>
Date: 2026-07-24 22:40:35 +0100
Commit message:
Commit: 6e45639a9973f2361fe7bab34c7154f5f79765b9
Author: Ossama Edbali <ossedb@gmail.com>
Date: 2026-07-24 22:40:35 +0100
Commit message:
feat(lipid-search): add LipidSearch source and lp_lipid_search layer Add LipidSearchSource(), which parses LipidSearch result files - both 4.2 and 5.2, auto-detected - into an xcms-style peak table. The per-sample Area/Height/RT/observed-m/z columns are reshaped into one row per lipid/sample, rejected lipids are dropped unless keep_rejected = TRUE, and lipid ions reported at several retention times get distinct plot labels. Chromatograms are drawn with the new lp_lipid_search() layer, whose lipids_query can reference the lipid annotations (class, sub_class, grade, adduct, lipid_rank, ...). Because 5.2 exports carry no raw-file names, their samples are keyed s1, s2, ... from the OrgMeanArea[...] columns; sample_paths can be named with those keys or matched positionally, while 4.2 keeps basename matching. The sample list comes from sample_paths rather than from the result file, so a supplied path the file never declares is still a full sample - every queried lipid is extracted there using its consensus m/z and RT window, it simply has no reported peak to highlight. The per-compound extraction loop is now shared with the Compound Discoverer scripting-node source via create_compound_chromatograms(), along with the compound ranking and column-resolution helpers. Bumps the package version to 1.1.6. Closes #31.
Package: igvShiny
Commit: 9e159e41f12db08f55698a055da3b318de584614
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-26 14:23:00 +0200
Commit message:
Commit: 9e159e41f12db08f55698a055da3b318de584614
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-26 14:23:00 +0200
Commit message:
fix: reply to getGenomicRegion in any shiny module (#134) (#137)
The getGenomicRegion handler built the module-scoped reply as
"igv-currentGenomicRegion." + elementID.replace("igv-", ""), hardcoding a
namespace instead of using the one the widget was rendered with. Only a module
whose id happened to be "igv" - as every demo uses - received the answer;
anywhere else the input never arrived. Pan and zoom were unaffected, since
locuschange builds the name correctly, so only the explicit "where am I" query
was lost.
The handlers are registered outside the widget factory and never see the
render options, so the namespace is now parked on the container element next to
chromLocString, and both call sites derive the event names from a single
currentGenomicRegionEventNames() - the duplicated naming logic is what let the
two paths drift apart in the first place.
Verified in node against a fake DOM (module ids igv, browser, myModule, and no
module at all, plus an element carrying no namespace) and end to end: with the
previous JS the new test's module reads NULL, with this one it reads the locus.
The test app serves its genome from the local httpuv fixture server, which now
sends Access-Control-Allow-Origin. It is a different port from the shiny app,
so without that header igv.js cannot fetch the genome and createBrowser returns
a promise that never settles - the app simply never reaches igvReady.
Related: #134
Package: igvShiny
Commit: 9f5ca693068358d889256a597264ddff4d59f0ae
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-26 12:50:28 +0200
Commit message:
Commit: 9f5ca693068358d889256a597264ddff4d59f0ae
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-26 12:50:28 +0200
Commit message:
ci: stop leaning on bioconductor.org more than needed (#138) * ci: stop leaning on bioconductor.org more than needed On 2026-07-25 bioconductor.org served 504s for over an hour. 'Set BiocVersion' took 23 minutes on Linux and 53 on macOS, and BiocCheck failed outright while fetching its deprecated-package list, so a green branch looked broken. Four changes, none of which trade away what the matrix actually verifies: - push runs are limited to master. A commit on a branch with an open PR used to run the whole matrix twice on the same SHA, once per event. - superseded pull request runs are cancelled; master runs are not, since they deploy pkgdown and push to Bioconductor. - 'Set BiocVersion' is skipped on the Linux container, which is already pinned to devel; a cheap assertion takes its place so image drift still surfaces. - BiocCheck's BiocFileCache directory is cached between runs. Cold, its fetch of meat-index.dcf is a bfcadd() and fatal when the host is down; warm, the failed refresh is survivable and the stored copy is used. That list changes rarely. A BioC_mirror escape hatch is wired to an empty 'bioc_mirror' env variable. Mirrors answered in under a second while the main host timed out, but they sync daily and this package tracks devel, so it stays off until it is wanted. Related: #124 * ci: brace the Bioc version check so Rscript parses the else branch * ci: take BiocCheck off bioconductor.org for the deprecation lookup The deprecated-package check is the one BiocCheck step that reaches the host, pulling checkResults//bioc-LATEST/meat-index.dcf through BiocFileCache. That endpoint served 504s for hours on both 2026-07-25 and 2026-07-26 while the rest of bioconductor.org answered in under a second, and a cold-cache bfcadd() against it is fatal - it failed every job on all three systems, in runs whose R CMD check had already passed with 166 tests. Warming the cache only narrowed the window, since the first run of the day still has to reach the host, so drop the two cache steps in favour of switching the check off: it reports whether the package is deprecated in Bioc, which igvShiny is not, and the official build farm runs the full BiocCheck regardless. * ci: stop the macOS and Windows jobs rebuilding the world every run Set BiocVersion called BiocManager::install() with no pkgs, which defaults to update = TRUE - "bring every installed package up to this version's repositories". Bioc devel publishes no macOS or Windows binaries, so each run recompiled the whole dependency tree from source: 52 minutes of an 84-minute job on 2026-07-25, on both systems, in a run that was otherwise healthy. The restored 261 MB package cache was being thrown away immediately after it was restored. The step only needs to point BiocManager at the right release; the dependencies this package actually needs come from the two install passes below it. </pre> </div> Package: igvShiny
Commit: 7a002943a9606eb37e2ec15bafe1ca07b0830fdd
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-26 07:35:08 +0200
Commit message:
ci: require the macOS and Windows jobs to pass (M3) (#136) The matrix carried allow-failure on macOS and Windows since the R 4.5/4.6 version mismatch was mistaken for shinytest2 flakiness. That root cause was fixed in #123 (r: '4.6' on both), and the jobs have since run green — the last 12 consecutive check-bioc runs (2026-07-25, 6 distinct SHAs, push and pull_request) succeeded on the full matrix, with mac/win producing a complete BiocCheck 0 ERROR / 0 WARNING / 2 NOTES. Dropping the flags makes 'CI green on Linux, macOS and Windows' an enforced condition rather than a reported one, which is the M3 deliverable. Related: #129Package: GSABenchmark
Commit: 2e7d1881054aa925a96a28c0a95be62f864385e7
Author: andrei-stoica26 <andreistoica@foxmail.com>
Date: 2026-07-26 12:32:06 +0800
Commit message:
Bumped versionPackage: GSABenchmark
Commit: 1c7aaa19d32b43129973459c3f7864e538497495
Author: andrei-stoica26 <andreistoica@foxmail.com>
Date: 2026-07-26 12:31:32 +0800
Commit message:
Edited descriptionPackage: CSOA
Commit: 0ca54521078826e3a03090ebb6d1c3d23a81f604
Author: andrei-stoica26 <andreistoica@foxmail.com>
Date: 2026-07-26 11:20:42 +0800
Commit message:
Bumped versionPackage: CSOA
Commit: ac7b1e74b199a6e762fa65aa2194e47c5401bbd1
Author: andrei-stoica26 <andreistoica@foxmail.com>
Date: 2026-07-26 11:20:11 +0800
Commit message:
Corrected vignette datePackage: fishash
Commit: 2454c9575df9b63f0c09fcb34b1fb8928d1b95d4
Author: Jack Kamm <jackkamm@gmail.com>
Date: 2026-07-25 19:48:37 -0700
Commit message:
Remove unnecessary Suggests that I missed in last commitPackage: fishash
Commit: 45824552ec732d7635c48d2b32229a8920cccc70
Author: Jack Kamm <jackkamm@gmail.com>
Date: 2026-07-25 19:05:08 -0700
Commit message:
Revise vignette: fix typo, add guards if missing Suggested packagesPackage: marinerData
Commit: 706b79815fede82d897ae5b6cd34b8e2a9984e32
Author: Eric Davis <ericscottdavis@outlook.com>
Date: 2026-07-25 15:41:10 -0400
Commit message:
Document the (m)cool accessors Adding the four rows to metadata.csv makes .onLoad create four new accessor functions, and R CMD check flagged all four as undocumented code objects -- a WARNING that would have appeared on the Bioconductor build report. Each accessor here gets its own roxygen block in zzz.R and a matching Rd, following the pattern already used for the .hic and BEDPE accessors. Rd files were written to match rather than regenerated: this package records RoxygenNote 7.2.3 and the available roxygen2 is 8.0.0, which would have rewritten every Rd in the package. R CMD check is now Status: OK, with 13/13 tests passing.Package: marinerData
Commit: 5aea2c518db1f0678f21b93c2c605749660b7420
Author: Eric Davis <ericscottdavis@outlook.com>
Date: 2026-07-25 15:00:21 -0400
Commit message:
Merge Bioconductor devel and add the (m)cool records The .cool/.mcool ExperimentHub records that Sarah Parker added in April 2024 were only ever pushed to GitHub, so no released marinerData exposes them. mariner's cooler support has the same history, and issue #35 on that repo is the visible consequence. GitHub main was 12 commits ahead and 14 behind Bioconductor devel, whose only commits since RELEASE_3_18 were the automated version bumps. The sole conflict was the version: main had never moved off 0.99.12 while Bioconductor had reached 1.13.0. Resolved to 1.13.1 and the NEWS heading corrected to match, since it still carried the old 0.99.12 number. The four data files are already archived at https://doi.org/10.5281/zenodo.10906240 and the records use Location_Prefix "https://zenodo.org/" with DispatchClass "FilePath", the same pattern as all twelve records Bioconductor already serves for this package. Nothing needs uploading; the hub only stores metadata pointing at the DOI.Package: marinerData
Commit: 08822a8c16c71fc4d9ac1327e67ca66019fd8517
Author: Sarah Parker <57263711+sarmapar@users.noreply.github.com>
Date: 2024-04-26 14:52:31 -0500
Commit message:
Merge pull request #4 from sarmapar/main Corrected RDataPath linksPackage: marinerData
Commit: 22fabac523b6ea793032d6862a04bf79d3fe53bd
Author: Sarah Parker <smp3800@gmail.com>
Date: 2024-04-26 15:51:03 -0400
Commit message:
Corrected RDataPath linksPackage: marinerData
Commit: c9b2b15671201a0cf8c5debe0867ed516fd4210c
Author: Sarah Parker <57263711+sarmapar@users.noreply.github.com>
Date: 2024-04-12 11:42:49 -0500
Commit message:
Merge pull request #3 from sarmapar/main Updating RDataClassPackage: marinerData
Commit: 8de9bc844c0fe45feae63e0fb78b5d9887a51b23
Author: Sarah Parker <smp3800@gmail.com>
Date: 2024-04-12 12:41:59 -0400
Commit message:
Updating RDataClassPackage: marinerData
Commit: f8a0ed1f9dc5fe0a44e3ccf4c313d0f7b1e56a96
Author: Sarah Parker <smp3800@gmail.com>
Date: 2024-04-12 12:40:06 -0400
Commit message:
Updated RDataClassPackage: marinerData
Commit: beeb708f013736965717d3c627f79fd2c17c9e5b
Author: Sarah Parker <57263711+sarmapar@users.noreply.github.com>
Date: 2024-04-11 10:14:45 -0500
Commit message:
Merge pull request #2 from sarmapar/main Correcting BiocVersion for new filesPackage: marinerData
Commit: 10d5a316d64923e8076e51189de34ce3e44d6cef
Author: Sarah Parker <smp3800@gmail.com>
Date: 2024-04-11 11:13:40 -0400
Commit message:
Making new metadata csvPackage: marinerData
Commit: d7a6d241c11cb4afb9d5971615f1b751605f50d0
Author: Sarah Parker <smp3800@gmail.com>
Date: 2024-04-11 11:06:38 -0400
Commit message:
Correcting BiocVersionPackage: marinerData
Commit: 5f5f1107e463bef689c9ea24737838455954ce50
Author: Sarah Parker <smp3800@gmail.com>
Date: 2024-04-11 11:04:20 -0400
Commit message:
updating BioC versionPackage: marinerData
Commit: bf5bc33734435c3ffc367c3ff979b2afe9ff35bb
Author: Sarah Parker <57263711+sarmapar@users.noreply.github.com>
Date: 2024-04-10 13:10:12 -0500
Commit message:
Merge pull request #1 from sarmapar/main Adding (m)cool filesPackage: marinerData
Commit: de4281143687e939a321241f46f648b43fcdee93
Author: Sarah Parker <smp3800@gmail.com>
Date: 2024-04-10 14:09:10 -0400
Commit message:
Bumping package version and updating newsPackage: marinerData
Commit: 92ded17dba6dc9e0993fa07118b0e7de9977f0c4
Author: Sarah Parker <smp3800@gmail.com>
Date: 2024-04-10 14:08:55 -0400
Commit message:
Adding (m)cool filesPackage: mariner
Commit: 91f71090fbbc591af8145d4c9a020d1b7b184c47
Author: Eric Davis <ericscottdavis@outlook.com>
Date: 2026-07-25 15:30:02 -0400
Commit message:
Correct the note on why cooler fixtures are synthetic The ExperimentHub records for marinerData's .cool/.mcool files do exist -- EH9511 through EH9514, pointing at doi:10.5281/zenodo.10906240. I had stated they were never published, which was wrong. The actual gap is narrower: marinerData builds its accessors in .onLoad from inst/extdata/metadata.csv, and those four rows were never pushed to Bioconductor. So the data is served but unreachable through the documented API, and the accessors the branch's tests called do not exist in any installable marinerData. The reason for using synthetic fixtures is unchanged, and does not actually depend on that: they keep R CMD check off the network and let the tests assert on known counts.Package: mariner
Commit: 75d2fb88bf01ecea02b05ef51131432813ac1b16
Author: Eric Davis <ericscottdavis@outlook.com>
Date: 2026-07-25 15:20:34 -0400
Commit message:
Fix the pkgdown site build The merge broke `pkgdown::build_site()`, which would have surfaced when deploying gh-pages rather than in R CMD check. _pkgdown.yml keeps a hand-curated reference index, and pkgdown treats any documented topic missing from it as an error. The four exported cooler functions were absent, so the build aborted; had it not, they would have been missing from the reference page entirely. They now appear under a "Cooler files" subtitle beside pullHicPixels/pullHicMatrices. .checkIfCool() also lacked @noRd, so it generated man/dot-checkIfCool.Rd -- the only dot-*.Rd in the package, and a public help page for an internal function. Every other internal helper here uses @noRd, including the sibling cooler helpers, so this follows suit and the Rd is removed.Package: mariner
Commit: 68fc9f9ec22b78e7e52b1aaad63dbdd556172ba1
Author: Eric Davis <ericscottdavis@outlook.com>
Date: 2026-07-25 15:02:18 -0400
Commit message:
Move the cooler section ahead of the pulling walkthroughs Placing it after the strawr chunk split that discussion from the paragraph explaining the missing 'chr' prefix, which reads as commentary on readHicChroms() output and has to follow it. File-format support also belongs before the walkthroughs rather than partway through one.Package: mariner
Commit: 3ee8dc8c4eb62dfacc7d0f162985259d5a92bf1f
Author: Eric Davis <ericscottdavis@outlook.com>
Date: 2026-07-25 15:01:11 -0400
Commit message:
Avoid an implicit header reference in the vignette Pandoc's implicit_header_references would resolve [Using .cool and .mcool files], but if the dialect ever changes it degrades to literal brackets in the rendered page rather than failing loudly. Refer to the section by name instead.Package: mariner
Commit: c50932ca3afcb66028c68be7ec3ffb063e8f0a07
Author: Eric Davis <ericscottdavis@outlook.com>
Date: 2026-07-25 14:58:34 -0400
Commit message:
Document cooler support Issue #35 asked for the package and the paper to agree, and half of that is documentation: nothing in the vignette or the pullHic* help said cooler files were usable at all. Adds a "Using .cool and .mcool files" section to the vignette covering automatic format detection, the readCool* counterparts to the strawr inspection functions, the "observed"-only and no-mixing restrictions, and the differing normalization conventions. Examples there are not evaluated, because marinerData's cooler files are on Zenodo but not yet published to ExperimentHub. Updates pullHicPixels() and pullHicMatrices() to say they accept cooler files, and points `norm` at readCoolNormTypes(). Man pages were edited to match rather than regenerated: the available roxygen2 is 8.0.0 against this package's RoxygenNote 7.3.3, and regenerating would rewrite every Rd file.Package: mariner
Commit: de7ca1d0ff51fe2dfa7ee5b4065e7b6a53b95fa2
Author: Eric Davis <ericscottdavis@outlook.com>
Date: 2026-07-25 14:58:25 -0400
Commit message:
Apply cooler balancing weights by multiplication cooler defines the balanced value as A_ij * w_i * w_j -- its `weight` column holds multiplicative biases. coolStraw() was dividing by them, so every "BALANCE" result was wrong by a factor of (w_i * w_j)^2 relative to what cooler itself reports for the same file. The other branch still divides, and that is deliberate rather than an oversight left half-fixed. Normalizations other than BALANCE are read from like-named bin columns, which in practice are juicer vectors carried into cooler files by converters such as hic2cool. Juicer's convention is divisive, so dividing there keeps those values consistent with strawr::straw(). The distinction is now documented on coolStraw() and in the vignette. The existing test asserted the divisive result, so it was updated alongside; it had been written against the implementation rather than against cooler.Package: mariner
Commit: 646573ebeae7c1aca1a9eaf89e5ad22a788e3ee1
Author: Eric Davis <ericscottdavis@outlook.com>
Date: 2026-07-25 14:52:11 -0400
Commit message:
Test cooler support against synthetic fixtures The branch's cooler tests called marinerData accessors for .cool/.mcool example files. Those files are archived on Zenodo (10.5281/zenodo.10906240) but the ExperimentHub records were never published to Bioconductor, so the accessors do not exist in any installable marinerData and every one of those tests failed to even load. Rather than block on publishing those records, build small cooler files locally with rhdf5 in helper-coolFixtures.R. This keeps R CMD check free of network access -- the real .mcool is 55 MB -- and lets the tests assert on counts we chose ourselves. That matters: the branch's tests only checked that cooler output agreed with .hic output for square on-diagonal queries, which is the one shape where both bugs fixed in the previous commit cancel out. Cooler coverage now lives in test_useCool.R alongside R/methods-useCool.R, and covers file-type detection, the metadata readers, eight query shapes including off-diagonal and interchromosomal, balancing weights, cool/mcool agreement, multi-resolution mcool, and argument validation. The .hic tests in test_pullHic.R are unchanged; only the cooler sections were removed from it.Package: mariner
Commit: 6497fb9ace015743c6861122c301c599c9863c27
Author: Eric Davis <ericscottdavis@outlook.com>
Date: 2026-07-25 14:49:00 -0400
Commit message:
Fix two bin-range bugs in coolStraw() Both found by testing against synthetic cooler files with known contents. Neither was caught before, because the branch's only tests compared cooler output against .hic output for square on-diagonal queries, which is the one shape where both bugs happen to cancel out. Queries ending at or past the end of a chromosome errored with "argument of length 0". end1bin was resolved with which(bin_starts == end), but the last bin of a chromosome starts one binsize before the chromosome end, so nothing matched. Now clamped to the final bin via .coolBinId(). More seriously, the pixel range for the requested rows ended at bin_offsets[end1bin+1]+1, which is the *first* pixel of the last row bin rather than the last. Every pixel in that row was dropped except one. For a square on-diagonal query the only in-range pixel of the last row is the diagonal element, which is exactly the one retained, so the results looked correct. For off-diagonal or interchromosomal queries an entire row of the matrix went missing and the function returned silently wrong counts. The range now ends at bin_offsets[end1bin+2].Package: mariner
Commit: e68fffe67ef8eb4a9845c66c51fb5a546dfe05e1
Author: Eric Davis <ericscottdavis@outlook.com>
Date: 2026-07-25 14:42:58 -0400
Commit message:
Bump to 1.13.1 and add NEWS entry for cooler support Note NEWS.md had not been updated since 1.2.1, so there is a gap between that entry and this one. Backfilling the intervening releases is left alone here rather than reconstructed from git log.Package: mariner
Commit: bfa48e4635619dbfbf75328921dac54f92e42849
Author: Eric Davis <ericscottdavis@outlook.com>
Date: 2026-07-25 14:42:19 -0400
Commit message:
Fix defects carried over from the cool-integration branch * The mixed .cool/.mcool test built imat_mixedCool then asserted against imat_cool, so mixed file input was never actually verified. This was preserved through the merge deliberately; fixing it here keeps the defect visible in history. * Four abort() calls in coolStraw() passed their "i" hint as a second argument to abort() rather than inside c(). rlang treats that as a data field, so every one of those hints was silently dropped and users got a bare error with no guidance on what to do next. * The chr2loc format check reported "chr1loc=..." in its error message. * readCoolNormTypes() documented a `resolutions` parameter but the formal is `resolution`. Corrected in both the roxygen block and the generated Rd.Package: mariner
Commit: 18716a336e553c675bf317386440a26e088137ff
Author: Eric Davis <ericscottdavis@outlook.com>
Date: 2026-07-25 14:41:03 -0400
Commit message:
Make cool support installable The cool-integration branch was never brought to an installable state, which is a large part of why it sat unmerged. Three defects, each fatal on its own: * DESCRIPTION specifies Collate, and methods-useCool.R was not listed. R only sources the files named there, so none of the cool code was loaded at install time and R CMD check errors on the unlisted file. * stringr was called and imported in NAMESPACE but never declared in DESCRIPTION, which is a check ERROR. It was used in only three places, so replace them with base strsplit() rather than take on a new dependency. The str_extract import was already dead and is dropped. * dplyr::pull() was called in .checkIfCool() without an import; NAMESPACE only brings in dplyr::mutate. This is the first function reached by every cooler call, so it failed immediately. Replaced with base `$` subsetting.Package: mariner
Commit: 8a89d79c90a09cd29aec4d96ead7f60d84b13c58
Author: Eric Davis <ericscottdavis@outlook.com>
Date: 2026-07-25 14:37:09 -0400
Commit message:
Merge branch 'cool-integration' into cool-integration-2026 Brings in .cool/.mcool support originally written by Sarah Parker in April 2024 (origin/cool-integration, 4 commits) onto current Bioconductor devel (1.13.0). The work was never merged or pushed to Bioconductor, which is why no released version of mariner has the cooler support described in the paper. See issues #35 and #33. The only conflict was tests/testthat/test_pullHic.R: devel reformatted the file (4-space indent, multi-line call style) while the branch appended tests in the older 2-space style. Resolved by keeping devel's formatting and re-applying the branch's additions in that style. NAMESPACE and R/methods-pullHic.R merged cleanly. The merged test for mixed .cool/.mcool input asserts against imat_cool rather than the imat_mixedCool it builds. That defect is preserved here and fixed in a follow-up commit so it stays visible in history. This merge alone does not install: methods-useCool.R is missing from Collate, stringr is undeclared, and dplyr::pull is unimported. Those are addressed next.Package: mariner
Commit: 523f0f0139ce2f0729a2e509138633821e929754
Author: Sarah Parker <smp3800@gmail.com>
Date: 2024-04-22 16:33:01 -0400
Commit message:
export straw-like functions for cool filesPackage: mariner
Commit: db6a698cac5e8ea01a7d080413d3517ead9029f3
Author: Sarah Parker <smp3800@gmail.com>
Date: 2024-04-22 16:32:38 -0400
Commit message:
new imports and exports for cool fxnsPackage: mariner
Commit: 91ba88f59131bb3b7dded085fabe440868206541
Author: Sarah Parker <smp3800@gmail.com>
Date: 2024-04-22 16:30:45 -0400
Commit message:
Testing cool functionsPackage: mariner
Commit: c3b26ec3865f23f30cb72b56d826a050648c303b
Author: Sarah Parker <smp3800@gmail.com>
Date: 2024-04-22 16:26:10 -0400
Commit message:
Pulling counts from cool filesPackage: amplican
Commit: 7a947f10ed84294debc65a543779e85af9ba8719
Author: JokingHero <kornel.labun@gmail.com>
Date: 2026-07-25 21:18:47 +0200
Commit message:
fix NA reading, rare casePackage: OSCA.advanced
Commit: c136f4d23eb52f75cb04e41a78bef41e060f06a0
Author: lgeistlinger <ludwig.geistlinger@gmail.com>
Date: 2026-07-25 13:33:36 -0400
Commit message:
merge upstream changesPackage: OSCA.advanced
Commit: 06225560116192a4679c557c05887593050cc705
Author: Alan O'Callaghan <alan.ocallaghan@outlook.com>
Date: 2026-04-27 13:35:40 +0100
Commit message:
Version bumpPackage: OSCA.advanced
Commit: b1d3d37f5f529695974ceef24fc7bac190b8a6c3
Author: Alan O'Callaghan <alan.ocallaghan@outlook.com>
Date: 2026-04-27 13:30:02 +0100
Commit message:
Remove density reddimsPackage: GSVAdata
Commit: 96cffff0143c1503f869c08f0a9ed65efcc39b95
Author: Robert Castelo <robert.castelo@upf.edu>
Date: 2026-07-25 18:11:42 +0200
Commit message:
Bump versionPackage: GSVAdata
Commit: 459f1c4664dd2100b8bcd77676be8250164ecb6a
Author: Robert Castelo <robert.castelo@upf.edu>
Date: 2026-07-25 18:11:11 +0200
Commit message:
Added gene sets derived from the snRNA-seq data from Tran et al. (2021) and the corresponding script generating themPackage: TSENAT
Commit: 9322fed5dd909d40e6203e55d5c90a3ee25c5ead
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-25 16:39:24 +0200
Commit message:
Increase test coveragePackage: igvShiny
Commit: 9e7db0b0be6b0fadbc3a14244026a387bd0b9a43
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-25 17:11:48 +0200
Commit message:
docs: add a getting-started vignette (M4) (#135) * docs: add a getting-started vignette (M4) The package shipped one vignette, an overview written around parseAndValidateGenomeSpec. It never showed a complete app, a track loaded from a data.frame, or how the browser reports its position back to R — the three things a new user needs first. This vignette goes install -> running app -> own data, and documents the parts of the API that are easy to get wrong from the reference docs alone: - the region is read asynchronously; getGenomicRegion() sends a request and the answer arrives as the currentGenomicRegion.input - the From URL loaders are fetched by the user's browser, so CORS applies where download.file() would have worked - inside a module the loaders take ns("igv"), because they address the HTML element rather than the input - unrecognised startup track keys are dropped with a warning Also a short troubleshooting section for the failure modes that produce a blank browser rather than an error: a 404 on the genome, chromosome naming mismatches, and loaders failing silently because they are one-way messages. Renders clean under BiocStyle. The module section links issue #134 rather than documenting the hard-coded "igv-" prefix as intended behaviour. * docs: drop the stray width argument from the vignette's fluidPage fluidPage() has no width parameter; the value was carried over from the overview vignette and htmltools would have rendered it as a width attribute on the page div. Copy in a getting-started document should be code someone can paste. * docs: keep the vignette under 80 characters per line CI came back green but with 3 BiocCheck NOTES against master's 2: the new vignette added lines over 80 characters. Two hg38 URLs assembled with paste0, one call broken across lines, one table cell shortened and the demo link moved to a reference definition. Renders unchanged. </pre> </div> Package: igvShiny
Commit: 33298b0d2db4623175052c4fcb60a5bcfd8193be
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-25 16:59:00 +0200
Commit message:
chore: configure CodeRabbit and check external assets on a schedule (#115) (#133) * chore: configure CodeRabbit and check external assets on a schedule (#115) Automated review changed underneath us when Gemini Code Assist shut down; CodeRabbit replaced it running on defaults. Configure it, and take the one job an AI reviewer is structurally unable to do and give it to a script. - .coderabbit.yaml: profile assertive (the default CHILL produced zero inline comments on #114, with no way to tell correct silence from not looking), vendored igv.js and generated man/NAMESPACE filtered out of review, and path instructions carrying the conventions a diff cannot show — the R/JS allowlist bridge, the pinned igv.js version, the local httpuv fixtures, and the gDRstyle NEWS linter rules. - .github/pull_request_template.md: a "Related: #NNN" field. Our PRs avoid "Fixes #NNN" on purpose, which silently disabled CodeRabbit's linked-issue and out-of-scope checks; this restores them without auto-closing issues. - .github/scripts/check-asset-urls.sh plus a weekly workflow: HEAD-request every external genome, index and demo track URL the package points at. The test suite serves its fixtures locally by design, so a dead upstream asset is invisible to it — #107 reached us as a user bug report instead. URLs are scraped from the sources rather than listed, so the check cannot drift from what the code requests; only run-time composed URLs are listed. - AGENTS.md: what automated review is expected to catch, and what it is not. The first run is already red: the tair10 and rhos assets on gladki.pl, the hg19 gencode annotation on igv.broadinstitute.org (403), and the igv.org.demo GWAS sample (404) are all gone. * chore: address CodeRabbit review on #133 - exit when cd to the repo root fails, instead of scraping the caller's directory and reporting whatever it happens to find - run the check on pull requests that touch R/, inst/demos/, vignettes/ or igvShiny.js, so a dead URL surfaces before merge rather than on Monday. PR runs report in the job summary but do not fail the build: the assets that are already dead are not that PR's doing, and a check that is red for everyone gets ignored - drop issues:write to the job that needs it and stop the checkout persisting credentials - comment nothing when a tracking issue is already open, rather than appending the same table every week - reword the igvShiny.js review instruction: the vendored library is out of review scope, so ask the author to confirm a config key against the pinned version rather than implying the reviewer can read it Also cover the three ribosomal-RNA-gene fixtures the overview vignette assembles from a base URL. Not applied: the PR template keeps a bare "Related: #" placeholder. "Related: #NNN" left unedited would read as a reference to issue 0.Package: igvShiny
Commit: 5f68d2f53913843485527664392056163ee6fa4e
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-25 15:24:03 +0200
Commit message:
fix: keep the tracks resource path in step with the tracks directory (#132) addResourcePath("tracks", get_tracks_dir()) ran once, in .onLoad, which pins the served directory for the life of the process. The default tracks directory lives under tempdir(), and tempdir() is not guaranteed to stay put: when it moves, loadGFF3TrackFromLocalData() and friends write into the new directory while shiny still serves the old one, so igv.js gets a 404 for a file that exists on disk and the track never renders. .tracksDir() re-points the resource path whenever it has drifted, and every write site goes through it. Measured before the fix: the local GFF3 track never rendered (>180s, against 1.6s for the remote one). The test for that track was skipped off CI with a comment blaming slow headless rendering; it is a 404, so the assertion is back and runs everywhere. The remote ENCODE bigWig assertion moves to its own test with an explicit skip(): the browser refuses that fetch outright (status 0), which is neither a slow render nor a dead host.Package: TSENAT
Commit: 9bdd86aa729daff133b18bbe305fa45959c5870f
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-25 14:50:37 +0200
Commit message:
Upgrade versionPackage: TSENAT
Commit: 841cc4697cbe7d7e98d57ab63533ee2ecbfb501e
Author: Cristóbal Gallardo Alba <gallardoalbac@gmail.com>
Date: 2026-07-25 14:49:12 +0200
Commit message:
Merge branch 'stable' into develPackage: TSENAT
Commit: 368190fc8205d5387c94902495ac366f7ffe18c3
Author: Cristóbal Gallardo Alba <gallardoalbac@gmail.com>
Date: 2026-07-25 14:39:55 +0200
Commit message:
TSENAT 1.0.0 Release: Increase coverage (#58) * Fix issues * Skip tests * Fix issues * Fix tests * Add skip_on_bioc * Bioconductor submission review * Increase test coverage * Fix codefactor style * Fix tests in Windows and increase coverage * Bug fixes * Fix tests * Fix addtional bugs * Fix statistical bugs * Fix rendering issue * Fix rendering issue * Fix identified bugs * Split files * Increase test coverage * Fix documentation issues * Change version * Remove innecesary files * Restore bug_report.md issue template * Fix version * Fix formatR * Fix test * FIx version * Increase coverage * Increase coverage * Increase coverage * Add testsPackage: TSENAT
Commit: cc9923a163f3c6d8dada91e6f56463da3ae37c8b
Author: Cristóbal Gallardo Alba <gallardoalbac@gmail.com>
Date: 2026-07-25 01:14:09 +0200
Commit message:
TSENAT 1.0.0 Release (#57) What's New Aligned Rank Transform (ART) is now the default for calculate_rank_transform(). Powered by the ARTool package (Kay et al. 2021), ART correctly handles non-parametric interaction testing by stripping main effects before ranking — a known limitation of classical rank-transform methods. The Conover-Iman Rank Transform remains available via method='rt'. 18+Package: TSENAT
Commit: a0e50ceea219aacec7fe9c0e680f45c005dc89c7
Author: Cristóbal Gallardo Alba <gallardoalbac@gmail.com>
Date: 2026-07-22 20:25:04 +0200
Commit message:
Harden silent-failure paths across the TSENAT R workflow and document audit findings (#55) This patch addresses a set of high-risk silent-recovery behaviors identified during a source review of the R package code. The goal was to make the analysis workflow more fail-fast, transparent, and reproducible. Included review-driven changes - Hardened assay resolution so invalid or malformed assay references now raise an explicit error instead of silently falling back to assay 1. - Removed in-place mutation from the TSENATAnalysis() constructor by copying the incoming SummarizedExperiment before adding metadata. - Tightened orchestration error handling so critical pipeline steps now stop on failure instead of continuing with partial state and only issuing a warning. - Removed the SAIT wrapper’s tryCatch() fallback that converted genuine model/setup failures into warning-only empty result objects. - Removed the lower-level SAIT fitting fallback that downgraded fitting errors to an empty data.frame(). - Added a regression test to confirm the SAIT wrapper now fails fast on invalid method input. - Hardened auto_detect_column() so invalid default_fallback values now return NULL instead of silently accepting unavailable column names. - Tightened calculate_jis() column auto-detection so missing condition_col, gene_col, or isoform_col now raise explicit errors instead of falling back to an incorrect default. - Hardened calculate_sait() parameter resolution so missing condition_col now fails fast with a clear message. - Added explicit validation to plot_expression() and plot_sait() so missing/undetectable condition_col stops execution immediately rather than proceeding with bad state. - Added regression coverage verifying auto_detect_column() ignores an unavailable default_fallback. - Fixed the .detect_jis_columns() test fixture so it removes colData safely without relying on unsupported in-place mutation. - Tightened the Storey q-value helper in westfall_young_permutation.R:295-314 so it now computes ordered Storey q-values directly from explicitly sorted p-values, then enforces monotonicity with a cumulative correction and keeps a robust lower bound to avoid nonsensical q-value results.Package: TSENAT
Commit: 51292977f121ea38d9b83f2c19f2813a91733c39
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-25 14:45:30 +0200
Commit message:
Fix version: 0.99.30 (Bioconductor pre-release numbering)Package: TSENAT
Commit: 58e0cc793df13be186ba1746c98ad214261d8f2d
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-25 13:47:53 +0200
Commit message:
Add testsPackage: TSENAT
Commit: e6e038fd62fd14a9c4c857f2be2326c42a65eda2
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-25 02:47:51 +0200
Commit message:
Increase coveragePackage: TSENAT
Commit: 4e50eb0aa9bba5041e1a20c411549421072921a5
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-25 02:43:26 +0200
Commit message:
Increase coveragePackage: TSENAT
Commit: 6658f067cdf6c2c695d54579e63f6a615310bb92
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-25 01:49:26 +0200
Commit message:
Increase coveragePackage: TSENAT
Commit: e33cd9d6bc145190f5da1bd43bcb12fe60bc41fa
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-24 23:59:52 +0200
Commit message:
FIx versionPackage: TSENAT
Commit: 8159e2b87a334dae916f5dd7d757577e12058851
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-24 23:52:19 +0200
Commit message:
Fix testPackage: TSENAT
Commit: 7d18400cc4cf19ad042e16fff8d4a86c78ba31c1
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-24 23:44:41 +0200
Commit message:
Fix formatRPackage: TSENAT
Commit: 83427a871dc1a09dfc3b20f38d01f97cd5d26634
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-24 23:07:21 +0200
Commit message:
Fix versionPackage: TSENAT
Commit: bb22991555cf182083359cba3749462e8fb2631a
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-24 22:51:25 +0200
Commit message:
Restore bug_report.md issue templatePackage: TSENAT
Commit: 8030fdff47cd84eb9574e1be88483a80806ef6cb
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-24 22:49:17 +0200
Commit message:
Remove innecesary filesPackage: TSENAT
Commit: ea52b834f7c34563398da248083cbaa074c4744d
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-24 17:37:30 +0200
Commit message:
Change versionPackage: TSENAT
Commit: 9b85189b2670cca67c1a4c210fee1222cb7969a4
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-24 17:36:45 +0200
Commit message:
Fix documentation issuesPackage: TSENAT
Commit: 2d580857f619943f7915211028567dd6259f896a
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-24 16:35:05 +0200
Commit message:
Increase test coveragePackage: TSENAT
Commit: f44514d9c9836f1e9bc056a35a4c9325fc20d01a
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-24 14:54:52 +0200
Commit message:
Split filesPackage: TSENAT
Commit: a8323147d914afad5690cd696343c185938135ae
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-24 14:35:50 +0200
Commit message:
Fix identified bugsPackage: TSENAT
Commit: 589ed4bd5dcba58c5017be218d1bfabe59637a20
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-24 14:04:32 +0200
Commit message:
Fix rendering issuePackage: TSENAT
Commit: 40e42a0408c973b6226bdad0a4f25b148b0d20c9
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-24 14:03:48 +0200
Commit message:
Fix rendering issuePackage: TSENAT
Commit: 76ec4be6310ff59719a4a58146ba052369f2aac5
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-24 13:45:06 +0200
Commit message:
Fix statistical bugsPackage: TSENAT
Commit: d7f500b09b690936842c3c6ffe219965420a8d89
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-24 13:32:32 +0200
Commit message:
Fix addtional bugsPackage: TSENAT
Commit: fb43eb091214d7954d57c68cf18651ca038f787a
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-24 13:01:31 +0200
Commit message:
Fix testsPackage: TSENAT
Commit: 831aab585c435269627780f1f3de6a36b00b2576
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-07-24 04:09:39 +0200
Commit message:
Bug fixesPackage: TSENAT
Commit: f74c3a9870ad87dc5de5555e23e25bdfdb5d2d07
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-06-22 21:36:29 +0200
Commit message:
Fix tests in Windows and increase coveragePackage: TSENAT
Commit: 9c025b41bec21134de2a4efc03bc0b8ed7d19e39
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-05-20 21:04:50 +0200
Commit message:
Fix codefactor stylePackage: TSENAT
Commit: 80c187534933eb498acfba6bcc6f3fe0ab10106c
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-05-20 20:58:21 +0200
Commit message:
Increase test coveragePackage: TSENAT
Commit: 8a29a8a970cf2932b2e474622f3da56f792af6a2
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-05-20 18:48:30 +0200
Commit message:
Bioconductor submission reviewPackage: TSENAT
Commit: 50239389cc86d032f5f71efb2d983ae7a8ca1a4d
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-05-05 18:04:44 +0200
Commit message:
Add skip_on_biocPackage: TSENAT
Commit: f58a13672d81af402f4faf3ab9482b78768972a7
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-05-05 14:49:50 +0200
Commit message:
Fix testsPackage: TSENAT
Commit: 900a80bc57f95de8e6a4b413db0f9e16fd54900e
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-05-05 05:01:02 +0200
Commit message:
Fix issuesPackage: TSENAT
Commit: a5c42c0cee86ad21a0c05d688acb500fc3ec61b7
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-05-05 03:04:20 +0200
Commit message:
Skip testsPackage: TSENAT
Commit: b6c47aac1cd98123ebdab69993b9e332f78cbae6
Author: gallardoalba <gallardoalbac@gmail.com>
Date: 2026-05-05 02:39:21 +0200
Commit message:
Fix issuesPackage: igvShiny
Commit: c27690d6f689a37a695974f05817a0a5832877da
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-25 12:17:08 +0200
Commit message:
fix: build igvShiny() outside a shiny session (#128) (#131) * fix: build igvShiny() outside a shiny session (#128) igvShiny() read the module namespace off the current reactive domain unconditionally, so calling it from a script or a vignette hit NULL$ns("") and died with 'attempt to apply non-function'. The JS side concatenates moduleNS with the event name (moduleNamespace() in inst/htmlwidgets/igvShiny.js), so the no-module case is the empty string. * style: keep the new comment under 80 characters (BiocCheck)Package: igvShiny
Commit: e0cab7dfe9d0045f5ee0a4bed92a32593611402f
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-25 09:52:57 +0200
Commit message:
fix: harden trackConfig/tracks input validation (CodeRabbit on #127) (#130) * fix: reject NA/empty names and unusable urls in the input sanitizers Two edge cases caught by CodeRabbit review on #127, both verified: - .sanitizeAndMergeOptions: any(names(userOptions) == "") evaluates to NA when a name is NA, so the guard errored ('missing value where TRUE/FALSE needed') instead of warning and returning baseOptions. anyNA() added, matching the sibling .sanitizeTracks guard. - .sanitizeTracks: is.null(track[["url"]]) only caught NULL, so NA, "", character(0) and non-character urls passed through and reached igv.js as broken startup tracks. Now requires a non-empty scalar character url. Adds test-sanitizer-validation.R covering both (pure functions, no session). Version 1.9.11 + NEWS. * test: cover multi-valued and missing track url (CodeRabbit on #130) Adds the length(url) != 1L branch (a url that is a character vector) and the missing-url-field case, both of which drop the entry with the same warning. * style: use whitelisted imperative verbs in NEWS entriesPackage: SeqArray
Commit: 49fb7f23a913354441e32099708c55746286840e
Author: Xiuwen Zheng <zhengxwen@gmail.com>
Date: 2026-07-25 02:24:08 -0500
Commit message:
fixesPackage: Voyager
Commit: 25d880e1c269c3df59023f08e52d1bca9db4f71b
Author: Lambda Moses <dlu2@caltech.edu>
Date: 2026-07-24 19:45:05 -0400
Commit message:
Removed deprecated functions from scran and scaterPackage: Voyager
Commit: 71b7c356e17c068472faae1c59958d8b6e6db054
Author: Lambda Moses <dlu2@caltech.edu>
Date: 2026-07-22 22:28:14 -0400
Commit message:
Updates to ggplo2 binning that is visible but not consequentialPackage: Voyager
Commit: b75af3d262d92a6ff075ffc3171ffc261a30f2c4
Author: Lambda Moses <dlu2@caltech.edu>
Date: 2026-07-22 22:27:41 -0400
Commit message:
Last change broke colDataUnivariatePackage: drugTargetInteractions
Commit: d036d77685ef9ac6e556313b4ca7be3bd4ba191e
Author: tgirke <tgirke@citrus.ucr.edu>
Date: 2026-07-24 16:06:05 -0700
Commit message:
raised version numberPackage: drugTargetInteractions
Commit: becc2a67ac027465f84ecc8077ab83092e60609a
Author: tgirke <tgirke@citrus.ucr.edu>
Date: 2026-07-24 16:00:39 -0700
Commit message:
Add @noRd to internal dot-prefixed functions to stop generating their man pages NAMESPACE exports only 54 functions, but nothing told roxygen2 to skip the ~91 internal dot-prefixed helpers, so they each got their own dot-*.Rd page. Added @noRd to every roxygen block documenting one of these (93 blocks, 91 distinct man pages after two @rdname groupings). Also unwrapped \link{.internalFn} cross-references in 8 exported functions' own docs (getChemblDrugTarget, getOpenTargetsDrugs, buildBroadRepurposingHubDb, broadRepurposingHubAnnot, queryDrugTargets, combineDrugTargets, downloadHgncTable, buildUnichemDb) to plain \code{.internalFn}, since those Rd link targets no longer exist - R CMD check's Rd cross-reference warning caught this. NAMESPACE untouched (hand-maintained, no export changes). 55 exported .Rd pages unaffected in content. Full test suite: 179 pass, 0 fail, same 1 pre-existing unrelated warning. R CMD check: same baseline (vignette-not-prebuilt warnings from --no-build-vignettes, the long-standing create_time/setNames NOTE); the long-standing gtoPdbStripHtml.Rd brace-escaping NOTE is gone since that page no longer exists. The 1 ERROR seen locally (missing EnsDb.Hsapiens.v86) is a pre-existing Suggests package not installed on this machine, unrelated to this change.Package: igvShiny
Commit: bac3eb1ed6871d3b5efcae39de5c0704e28ea412
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-24 23:11:07 +0200
Commit message:
test: unit-test the track loaders, 16% -> 92% coverage (M3) (#129) * ci: enable the covr coverage step and report the total on every Linux build The step existed but was dead twice over: run_covr was 'false' and the condition required refs/heads/devel, while this repo develops on master. Coverage now runs on every Linux build (pushes and PRs) so a regression is visible in the diff rather than at the end of M3. The Codecov upload is guarded on CODECOV_TOKEN being present - without the secret the job prints the summary and moves on instead of failing. Baseline measured locally at 16.1% (94/583 expressions). R/igvShiny.R is at 0% because the shinytest2 tests run the app in a separate process, which covr cannot instrument; that file holds 440 of the 583 expressions. Version 1.9.11 + NEWS. * test: cover the track loaders with a fake Shiny session Every loader ends in session$sendCustomMessage(), so a recording fake session exercises them without a browser. This matters twice over: the shinytest2 tests run the app in a separate process, which covr cannot instrument, and the R->JS payload is exactly what regressed in #36, #105 and #116 with nothing outside a browser to catch it. Also replaces the two tests that reached out to gladki.pl with a local httpuv static server over inst/extdata. The http code path (httr::HEAD, http_error) is still tested for real, but a slow or throttled third-party host can no longer turn CI red on an unrelated commit - which is what happened on run 30121014760. Coverage: 16.1% -> 67.5% overall, R/igvShiny.R 0% -> 68.1%. * test: cover GWASTrack display/show and the widget constructor Takes coverage past the M3 target: 72.8% -> 84.6% overall, R/igvShiny.R to 84.0% and R/GWASTrack.R to 91.4%. igvShiny() reads the module namespace off the current reactive domain, so the widget tests run inside a MockShinySession. Worth noting: outside any domain the call dies with 'attempt to apply non-function', because getDefaultReactiveDomain() returns NULL and NULL$ns is not callable. Left as-is here - in an app the constructor always runs inside a session - but it does block building a widget from a plain script. Version 1.9.12 + NEWS.Package: igvShiny
Commit: 19ce14a779a7969f27d4da112e9a9fc7f46d780d
Author: Arek Gladki <41166437+gladkia@users.noreply.github.com>
Date: 2026-07-24 22:38:22 +0200
Commit message:
style: clear the BiocCheck line-length NOTE (M1) (#127) * style: wrap over-long source lines, keep paste() out of condition signals Clear the BiocCheck line-length NOTE (25 lines > 80 chars in R/igvShiny.R, the last blocker for the M1 acceptance criterion of <=2 NOTEs). Wrapping the two multi-line warnings first traded that NOTE for a new one ('Avoid the use of paste in condition signals'), so the message strings are now assembled into a local variable before being passed to warning(). The emitted text is byte-identical to before. Also ignore the local *.BiocCheck/ output folder, which BiocCheck drops into the package directory on every local run and otherwise shows up as an ERROR on the next run. Version 1.9.10 + NEWS. * docs: shorten NEWS entries to satisfy gDRstyle::lintNewsEntries The devel linter accepts only a fixed list of imperative verbs; 'Build' and 'Ignore' are not on it, so switch to 'Move' and 'Exclude' and keep every bullet on a single line.Package: Pirat
Commit: 115ce1c1a8a3321cf69300ee12a08cecf67d9662
Author: Lucas Etourneau <lucas.etourneau@berkeley.edu>
Date: 2026-07-24 13:17:00 -0700
Commit message:
Add CITATION upstreamPackage: igvShiny
Commit: 1454847dea68341979e0a93c6bc45ed14021b058
Author: Mateusz <gladkiimateusz@gmail.com>
Date: 2026-07-24 20:46:21 +0200
Commit message:
feat: bundle igv.js 3.8.4 (minified), fix locuschange for 3.x (#116) (#125) Swap the bundled igv.js from 2.13.1 to 3.8.4, using the minified UMD build (igv-3.8.4.min.js). igvShiny.yaml points at it and declares the real bundled version instead of the long-stale 1.4.5. Adapt the locuschange handler to the 3.x payload: the callback now receives the referenceFrameList; read the first frame and rebuild the same comma-free "chr:start-end" string currentGenomicRegion has always emitted, guarding the whole-genome "all" view (the old raw start/end were meaningless there). Adapt the shinytest2 tests to 3.x: igv.js 3.x renders the browser inside a shadow root, so the track DOM is no longer in the element's light-DOM HTML. The helper now polls shadowRoot.innerHTML instead of get_html(). Two assertions (remote ENCODE bigWig, local biotype-coloured GFF3) render reliably locally but are flaky in headless CI under 3.x's fetch-before-render behaviour, so they run off CI only. Scope stays narrow (version bump + locuschange + the test changes it forces); the lib/ cleanup, rn6 via twoBit, and the #114 patch removal follow in a separate PR.Package: immunoClust
Commit: f1d31c0d3f23334cced133b84b3d23819b444817
Author: Till Sörensen <till-antoni.soerensen@charite.de>
Date: 2026-07-24 16:10:26 +0200
Commit message:
added accessor ICL_biasPackage: immunoClust
Commit: 9ac35b49104796c9ba07f330bafd42332ec7ec15
Author: Till Sörensen <till-antoni.soerensen@charite.de>
Date: 2026-05-05 09:18:01 +0200
Commit message:
minor bugfixPackage: immunoClust
Commit: 339d078e3989c6d18343177d164cbb719cc2922b
Author: Till Sörensen <till-antoni.soerensen@charite.de>
Date: 2026-04-30 16:27:03 +0200
Commit message:
Merge branch 'devel' of git.bioconductor.org:packages/immunoClust into develPackage: immunoClust
Commit: 56d9333ccecd91036464e8804a4c0ecf354cda48
Author: Till Sörensen <till-antoni.soerensen@charite.de>
Date: 2026-04-30 16:24:31 +0200
Commit message:
code cleaingPackage: immunoClust
Commit: aef5c5249e03dff42acbfa243f450fe994870916
Author: Till Sörensen <till-antoni.soerensen@charite.de>
Date: 2026-01-12 11:43:25 +0100
Commit message:
minorPackage: immunoClust
Commit: 6fa739f986ad55b00e7ff6a799596687b9db7e69
Author: Till Sörensen <till-antoni.soerensen@charite.de>
Date: 2026-01-12 11:42:02 +0100
Commit message:
added method meta.MstepPackage: spatialLIBD
Commit: 94b68c69aeea6417ba7599edd723a11e02ee9682
Author: lcolladotor <lcolladotor@gmail.com>
Date: 2026-07-24 09:53:12 -0400
Commit message:
v1.25.2 -- fix colors on app at the layer-level tabPackage: Rarr
Commit: a1370094e7f0b77470c8e4a7df32f787e83574d9
Author: Hugo Gruson <git@hugogruson.fr>
Date: 2026-07-24 14:23:28 +0200
Commit message:
Add comment and tests about spec deviations
</div> </div>