##' @title Reading MGF files
##'
##' @description
##'
##' The `readMgf` function imports the data from a file in MGF format reading
##' all specified fields and returning the data as a [DataFrame()].
##'
##' For very large MGF files the `readMgfSplit` function might be used instead.
##' In contrast to the `readMgf` functions, `readMgfSplit` reads only `nlines`
##' lines from an MGF file at once reducing thus the memory demand (at the cost
##' of a lower performance, compared to `readMgf`).
##'
##' @param f `character(1)` with the path to an mgf file.
##'
##' @param msLevel `numeric(1)` with the MS level. Default is 2.
##'
##' @param mapping named `character` vector to rename mgf fields to spectra
##' variables.
##'
##' @param nlines for `readMgfSplit`: `integer(1)` with the number of lines
##' that should be imported and parsed in each iteration.
##'
##' @param BPPARAM parallel processing setup that should be used. Only the
##' parsing of the imported MGF file is performed in parallel.
##'
##' @param ... Additional parameters, currently ignored.
##'
##' @return
##'
##' A `DataFrame` with each row containing the data from one spectrum
##' in the MGF file. m/z and intensity values are available in columns `"mz"`
##' and `"intensity"` in a list representation.
##'
##' @export
##'
##' @importFrom Spectra coreSpectraVariables
##'
##' @importFrom S4Vectors DataFrame
##'
##' @importFrom IRanges NumericList
##'
##' @importFrom MsCoreUtils rbindFill
##'
##' @importFrom methods as
##'
##' @importFrom BiocParallel SerialParam bpmapply
##'
##' @author Laurent Gatto, Johannes Rainer, Sebastian Gibb
##'
##' @examples
##'
##' fls <- dir(system.file("extdata", package = "MsBackendMgf"),
##' full.names = TRUE, pattern = "mgf$")[1L]
##'
##' readMgf(fls)
readMgf <- function(f, msLevel = 2L,
mapping = spectraVariableMapping(MsBackendMgf()), ...,
BPPARAM = SerialParam()) {
requireNamespace("MsBackendMgf", quietly = TRUE)
if (length(f) != 1L)
stop("Please provide a single mgf file.")
## Note: using readLines instead has some performance advantages
## (few seconds) for very large files
mgf <- scan(file = f, what = "",
sep = "\n", quote = "",
allowEscapes = FALSE,
quiet = TRUE)
## From http://www.matrixscience.com/help/data_file_help.html#GEN
## Comment lines beginning with one of the symbols #;!/ can be
## included, but only outside of the BEGIN IONS and END IONS
## statements that delimit an MS/MS dataset.
begin <- grep("BEGIN IONS", mgf, fixed = TRUE) + 1L
end <- grep("END IONS", mgf, fixed = TRUE) - 1L
res <- rbindFill(bpmapply(begin, end, FUN = function(b, e, mgf)
.extract_mgf_spectrum(mgf[b:e]), MoreArgs = list(mgf = mgf),
SIMPLIFY = FALSE, USE.NAMES = FALSE, BPPARAM = BPPARAM))
if ("CHARGE" %in% colnames(res))
res$CHARGE <- .format_charge(res$CHARGE)
idx <- match(colnames(res), mapping)
not_na <- !is.na(idx)
if (any(not_na))
colnames(res)[not_na] <- names(mapping)[idx][not_na]
spv <- coreSpectraVariables()
spv <- spv[!names(spv) %in% c("mz", "intensity")]
for (i in seq_along(res)) {
if (all(lengths(res[[i]]) == 1))
res[[i]] <- unlist(res[[i]])
if (any(col <- names(spv) == colnames(res)[i]))
res[[i]] <- as(res[[i]], spv[col][1])
}
res <- as(res, "DataFrame")
res$mz <- IRanges::NumericList(res$mz, compress = FALSE)
res$intensity <- IRanges::NumericList(res$intensity, compress = FALSE)
res$dataOrigin <- f
if(!"msLevel" %in% colnames(res)) {
res$msLevel <- as.integer(msLevel)
}
res
}
#' @export
#'
#' @rdname readMgf
readMgfSplit <- function(f, msLevel = 2L,
mapping = spectraVariableMapping(MsBackendMgf()),
nlines = 100000, BPPARAM = SerialParam(), ...) {
requireNamespace("MsBackendMgf", quietly = TRUE)
if (length(f) != 1L)
stop("Please provide a single mgf file.")
if (nlines < 1)
stop("'nlines' has to be an integer > 1.")
keep_reading <- TRUE
nskip <- 0L
sp <- list()
while (keep_reading) {
mgf <- scan(file = f, what = "",
sep = "\n", quote = "",
allowEscapes = FALSE,
skip = nskip,
nlines = nlines,
quiet = TRUE,
blank.lines.skip = FALSE)
if (length(mgf) < nlines)
keep_reading <- FALSE
begin <- grep("BEGIN IONS", mgf, fixed = TRUE) + 1L
end <- grep("END IONS", mgf, fixed = TRUE) - 1L
if (!length(end))
stop("Could not find 'END IONS'. ",
"Consider increasing the value for 'nlines'")
nskip <- nskip + end[length(end)] + 1L
begin <- begin[seq_along(end)]
## This append operation is very costly; need an alternative.
sp <- c(sp,
bplapply(
seq_along(begin), function(i, mgf, begin, end) {
.extract_mgf_spectrum(mgf[begin[i]:end[i]])},
mgf = mgf, begin = begin, end = end,
BPPARAM = BPPARAM)
)
}
res <- rbindFill(sp)
if ("CHARGE" %in% colnames(res))
res$CHARGE <- .format_charge(res$CHARGE)
idx <- match(colnames(res), mapping)
not_na <- !is.na(idx)
if (any(not_na))
colnames(res)[not_na] <- names(mapping)[idx][not_na]
spv <- coreSpectraVariables()
spv <- spv[!names(spv) %in% c("mz", "intensity")]
for (i in seq_along(res)) {
if (all(lengths(res[[i]]) == 1))
res[[i]] <- unlist(res[[i]])
if (any(col <- names(spv) == colnames(res)[i]))
res[[i]] <- as(res[[i]], spv[col][1])
}
res <- as(res, "DataFrame")
res$mz <- IRanges::NumericList(res$mz, compress = FALSE)
res$intensity <- IRanges::NumericList(res$intensity, compress = FALSE)
res$dataOrigin <- f
if(!"msLevel" %in% colnames(res)) {
res$msLevel <- as.integer(msLevel)
}
res
}
##' @description
##'
##' Extract **all** fields from the MGF eventually renaming the field names to
##' the spectra variable names specified with `mapping`.
##'
##' @param mgf `character()` of lines defining a spectrum in mgf
##' format.
##'
##' @author Laurent Gatto, Johannes Rainer
##'
##' @importFrom stats setNames
##'
##' @noRd
.extract_mgf_spectrum <- function(mgf) {
## grep description
desc.idx <- grep("=", mgf, fixed = TRUE)
desc <- mgf[desc.idx]
spec <- strsplit(mgf[-desc.idx], "[[:space:]]+", perl = TRUE)
if (!length(spec) || length(spec[[1L]]) == 1L)
ms <- matrix(numeric(), ncol = 2L)
else
ms <- matrix(
as.double(unlist(spec, use.names = FALSE, recursive = FALSE)),
ncol = length(spec[[1L]]), byrow = TRUE)
if(nrow(ms) > 1 && is.unsorted(ms[, 1L]))
ms <- ms[order(ms[, 1L]), , drop = FALSE]
r <- regexpr("=", desc, fixed = TRUE)
desc <- setNames(substring(desc, r + 1L, nchar(desc)),
substring(desc, 1L, r - 1L))
desc[c("PEPMASS", "PEPMASSINT")] <-
strsplit(desc["PEPMASS"], "[[:space:]]+", perl = TRUE)[[1L]][c(1L, 2L)]
res <- as.data.frame.matrix(matrix(desc, nrow = 1,
dimnames = list(NULL, names(desc))))
res$mz <- list(ms[, 1L])
res$intensity <- list(ms[, 2L])
res
}
#' Format MGF charge string into an integer compatible format.
#'
#' @param x `character`
#' @return `character`, charge without +/- at the end but - as prefix if needed
#' @noRd
.format_charge <- function(x) {
res <- sub("[+-]", "", x, perl = TRUE)
negs <- which(endsWith(x, "-"))
if (length(negs))
res[negs] <- paste0("-", res[negs])
res
}
#' @description
#'
#' Function to export a `Spectra` object in MGF format to `con`.
#'
#' @param x `Spectra`
#'
#' @param con output file.
#'
#' @param mapping named `character` vector that maps from `spectraVariables`
#' (i.e. `names(mapping)`) to the variable name that should be used in the
#' MGF file.
#'
#' @author Johannes Rainer
#'
#' @importMethodsFrom Spectra spectraVariables spectraNames spectraData
#'
#' @importMethodsFrom ProtGenerics peaksData
#'
#' @noRd
#'
#' @examples
#'
#' spd <- DataFrame(msLevel = c(2L, 2L, 2L), rtime = c(1, 2, 3))
#' spd$mz <- list(c(12, 14, 45, 56), c(14.1, 34, 56.1), c(12.1, 14.15, 34.1))
#' spd$intensity <- list(c(10, 20, 30, 40), c(11, 21, 31), c(12, 22, 32))
#'
#' sps <- Spectra(spd)
#'
#' .export_mgf(sps)
.export_mgf <- function(x, con = stdout(),
mapping = spectraVariableMapping(MsBackendMgf()),
exportTitle = TRUE) {
spv <- spectraVariables(x)
spd <- spectraData(x, spv[!(spv %in% c("dataOrigin", "dataStorage"))])
col_not_ok <- !vapply(spd, function(z) is.vector(z) & !is.list(z),
logical(1))
if (any(col_not_ok))
stop("Column(s) ", paste(colnames(spd)[col_not_ok], collapse = ", "),
" contain multiple elements per row. Please either drop this ",
"column or reduce its elements to a single value per row.")
idx <- match(colnames(spd), names(mapping))
colnames(spd)[!is.na(idx)] <- mapping[idx[!is.na(idx)]]
if (any(colnames(spd) == "CHARGE")) {
sign_char <- ifelse(spd$CHARGE > 0, "+", "-")
nas <- is.na(spd$CHARGE)
spd$CHARGE <- paste0(abs(spd$CHARGE), sign_char)
spd$CHARGE[nas] <- ""
}
if (!exportTitle)
spd$TITLE <- NULL
l <- nrow(spd)
tmp <- lapply(colnames(spd), function(z) {
paste0(z, "=", spd[, z], "\n")
})
if (exportTitle && !any(colnames(spd) == "TITLE")) {
if (!is.null(spectraNames(x)))
title <- paste0("TITLE=", spectraNames(x), "\n")
else
title <- paste0("TITLE=msLevel ", spd$msLevel, "; retentionTime ",
spd$rtime, "; scanNum ", spd$acquisitionNum, "\n")
tmp <- c(list(title), tmp)
}
pks <- vapply(peaksData(x), function(z)
paste0(paste0(z[, 1], " ", z[, 2], "\n"), collapse = ""),
character(1))
tmp <- do.call(cbind, c(list(rep_len("BEGIN IONS\n", l)),
tmp, list(pks), list(rep_len("END IONS\n", l))))
tmp[grep("=NA\n", tmp)] <- ""
writeLines(apply(tmp, 1, paste0, collapse = ""), con = con)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.