Skip to content

Commit

Permalink
Merge branch 'devel' of git.bioconductor.org:packages/rawrr into devel
Browse files Browse the repository at this point in the history
  • Loading branch information
cpanse committed Aug 23, 2024
2 parents b57c307 + 0917692 commit 55e5e37
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: rawrr
Type: Package
Title: Direct Access to Orbitrap Data and Beyond
Version: 1.13.0
Version: 1.13.1
Authors@R: c(person("Christian", "Panse",
email = "[email protected]",
role = c("aut", "cre"),
Expand Down
5 changes: 5 additions & 0 deletions R/rawrr.R
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@
function(rawfile, input, rawrrArgs="scans", tmpdir=tempdir(),
removeTempfile=TRUE){


mono <- if(Sys.info()['sysname'] %in% c("Darwin", "Linux")) TRUE else FALSE
exe <- .rawrrAssembly()

Expand All @@ -101,6 +102,10 @@
}

if (mono){
if (system2(command = "/usr/bin/which", args = c("mono"),
stderr = FALSE, stdout = FALSE) != 0){
stop("mono is not available; please check https://www.mono-project.com/")
}
rvs <- system2(Sys.which("mono"), args = c(shQuote(exe),
shQuote(rawfile),
rawrrArgs, shQuote(tfi),
Expand Down
8 changes: 1 addition & 7 deletions vignettes/rawrr.bib
Original file line number Diff line number Diff line change
Expand Up @@ -147,14 +147,8 @@ @article{Gehrig2020
journal = {Journal of the American Society for Mass Spectrometry}
}






@book{newS,
author = {Richard A. Becker and John M. Chambers and Allan
R. Wilks},
author = {Richard A. Becker and John M. Chambers and Allan R. Wilks},
title = {The New {S} Language},
publisher = {Chapman \& Hall},
year = 1988,
Expand Down

0 comments on commit 55e5e37

Please sign in to comment.