File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ S3method(plot,rawrrSpectrum)
66S3method(print,rawrrSpectrum)
77S3method(summary,rawrrChromatogram)
88S3method(summary,rawrrSpectrum)
9+ export(.isAssemblyWorking)
10+ export(.rawrrAssembly)
911export(basePeak)
1012export(buildRawrrExe)
1113export(dependentScan)
Original file line number Diff line number Diff line change 11# R
22
3- # Test if \code{rawrr.exe} .NET assembly is working
3+ # ' Test if \code{rawrr.exe} .NET assembly is working
4+ # ' The default when the assembly is not working is an
5+ # ' error message.
6+ # ' @param FUN function triggered. default is using the \code{stop} method
7+ # ' @param exe path to the assembly. default is \code{rawrr:::.rawrrAssembly()}.
8+ # ' @return TRUE if assembly is working
9+ # ' @export
410.isAssemblyWorking <-
511 function (FUN = stop , exe = .rawrrAssembly()){
612
@@ -51,7 +57,9 @@ rawrrAssemblyPath <- function(){
5157}
5258
5359
60+ # ' Helper function providing the pass to the rawrr assembly.
5461# ' @importFrom tools R_user_dir
62+ # ' @export
5563.rawrrAssembly <- function (){
5664 libdir <- tools :: R_user_dir(" rawrr" , which = ' cache' )
5765 d <- file.path(libdir , ' rawrrassembly' )
You can’t perform that action at this time.
0 commit comments