Skip to content

Commit 751ee2b

Browse files
committedMar 12, 2025·
fix: replace NAnnotatedDataFrame with AnnotatedDataFrame
- This fixes issue #789 by replacing the use of the deprecated and removed `NAnnotatedDataFrame` with the `Biobase::AnnotatedDataFrame`.
1 parent 55d39de commit 751ee2b

13 files changed

+22
-17
lines changed
 

‎.github/workflows/check-bioc.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ env:
4040
run_pkgdown: 'true'
4141
has_RUnit: 'false'
4242
has_BiocCheck: 'false'
43-
cache-version: 'cache-v1'
43+
cache-version: 'cache-v4'
4444

4545
jobs:
4646
build-check:
@@ -100,15 +100,15 @@ jobs:
100100

101101
- name: Cache R packages
102102
if: "!contains(github.event.head_commit.message, '/nocache') && runner.os != 'Linux'"
103-
uses: actions/cache@v2
103+
uses: actions/cache@v4
104104
with:
105105
path: ${{ env.R_LIBS_USER }}
106106
key: ${{ env.cache-version }}-${{ runner.os }}-biocversion-devel-r-devel-${{ hashFiles('.github/depends.Rds') }}
107107
restore-keys: ${{ env.cache-version }}-${{ runner.os }}-biocversion-devel-r-devel-
108108

109109
- name: Cache R packages on Linux
110110
if: "!contains(github.event.head_commit.message, '/nocache') && runner.os == 'Linux' "
111-
uses: actions/cache@v2
111+
uses: actions/cache@v4
112112
with:
113113
path: /home/runner/work/_temp/Library
114114
key: ${{ env.cache-version }}-${{ runner.os }}-biocversion-devel-r-devel-${{ hashFiles('.github/depends.Rds') }}

‎DESCRIPTION

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: xcms
2-
Version: 4.5.3
2+
Version: 4.5.4
33
Title: LC-MS and GC-MS Data Analysis
44
Description: Framework for processing and visualization of chromatographically
55
separated and single-spectra mass spectral data. Imports from AIA/ANDI NetCDF,
@@ -49,7 +49,7 @@ Depends:
4949
R (>= 4.0.0),
5050
BiocParallel (>= 1.8.0)
5151
Imports:
52-
MSnbase (>= 2.29.3),
52+
MSnbase (>= 2.33.3),
5353
mzR (>= 2.25.3),
5454
methods,
5555
Biobase,

‎NEWS.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# xcms 4.5
22

3+
## Changes in version 4.5.4
4+
5+
- Replace usage of deprecated (and removed) class `NAnnotatedDataFrame` with
6+
`AnnotatedDataFrame`.
7+
38
## Changes in version 4.5.3
49

510
- Address issue #765: peak detection on chromatographic data: report a

‎R/XcmsExperiment-functions.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -1298,7 +1298,7 @@ XcmsExperiment <- function() {
12981298
processing = paste0("Data converted [", date(),"]"),
12991299
files = fileNames(from),
13001300
smoothed = NA)
1301-
n@phenoData <- new("NAnnotatedDataFrame", as.data.frame(sampleData(from)))
1301+
n@phenoData <- AnnotatedDataFrame(as.data.frame(sampleData(from)))
13021302
fd <- as.data.frame(from@spectra@backend@spectraData)
13031303
fnames <- unique(fd$dataStorage)
13041304
fd$fileIdx <- match(fd$dataStorage, fnames)

‎R/functions-OnDiskMSnExp.R

+2-2
Original file line numberDiff line numberDiff line change
@@ -629,8 +629,8 @@ findPeaks_MSW_Spectrum_list <- function(x, method = "MSW", param) {
629629
pdata <- do.call(rbind, lapply(x, pData))
630630
res <- new(
631631
"OnDiskMSnExp",
632-
phenoData = new("NAnnotatedDataFrame", data = pdata),
633-
featureData = new("AnnotatedDataFrame", featd),
632+
phenoData = AnnotatedDataFrame(pdata),
633+
featureData = AnnotatedDataFrame(featd),
634634
processingData = new("MSnProcess",
635635
processing = paste0("Concatenated [", date(), "]"),
636636
files = unlist(fls), smoothed = NA),

‎R/functions-XChromatograms.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#' `XChromatogram` objects.
3030
#'
3131
#' @param phenoData For `XChromatograms`: either a `data.frame`,
32-
#' `AnnotatedDataFrame` or `NAnnotatedDataFrame` describing the
32+
#' `AnnotatedDataFrame` describing the
3333
#' phenotypical information of the samples.
3434
#'
3535
#' @param featureData For `XChromatograms`: either a `data.frame` or

‎R/methods-XCMSnExp.R

+6-6
Original file line numberDiff line numberDiff line change
@@ -2404,9 +2404,9 @@ setMethod("fillChromPeaks",
24042404
"OnDiskMSnExp",
24052405
processingData = new("MSnProcess",
24062406
files = fileNames(object)[i]),
2407-
featureData = new("AnnotatedDataFrame", fd),
2408-
phenoData = new("NAnnotatedDataFrame",
2409-
data.frame(sampleNames = "1")),
2407+
featureData = AnnotatedDataFrame(fd),
2408+
phenoData = AnnotatedDataFrame(
2409+
data.frame(sampleNames = "1")),
24102410
experimentData = new("MIAPE",
24112411
instrumentManufacturer = "a",
24122412
instrumentModel = "a",
@@ -2591,9 +2591,9 @@ setMethod("fillChromPeaks",
25912591
"OnDiskMSnExp",
25922592
processingData = new("MSnProcess",
25932593
files = fileNames(object)[i]),
2594-
featureData = new("AnnotatedDataFrame", fd),
2595-
phenoData = new("NAnnotatedDataFrame",
2596-
data.frame(sampleNames = "1")),
2594+
featureData = AnnotatedDataFrame(fd),
2595+
phenoData = AnnotatedDataFrame(
2596+
data.frame(sampleNames = "1")),
25972597
experimentData = new("MIAPE",
25982598
instrumentManufacturer = "a",
25992599
instrumentModel = "a",

‎data/faahko_sub.RData

-2.8 KB
Binary file not shown.

‎data/faahko_sub2.RData

-980 Bytes
Binary file not shown.

‎data/xdata.RData

6.45 KB
Binary file not shown.

‎data/xmse.RData

-1.21 KB
Binary file not shown.

‎man/XChromatogram.Rd

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎vignettes/xcms-direct-injection.Rmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ pd <- data.frame(filename = basename(mzML_files), sample_group = grp)
6868
6969
## Load the data.
7070
ham_raw <- readMSData(files = mzML_files,
71-
pdata = new("NAnnotatedDataFrame", pd),
71+
pdata = AnnotatedDataFrame(pd),
7272
mode = "onDisk")
7373
```
7474

0 commit comments

Comments
 (0)
Please sign in to comment.