R/deprecated.R

Defines functions PlotScanTime PlotChargeState PlotMassDistribution PlotMzDistribution PlotInjectionTime PlotCycleTime PlotTicBasepeak PlotPrecursorHeatmap PlotLockMassCorrection read.raw

Documented in PlotChargeState PlotCycleTime PlotInjectionTime PlotLockMassCorrection PlotMassDistribution PlotMzDistribution PlotPrecursorHeatmap PlotScanTime PlotTicBasepeak

#R

#' @export
read.raw <- function(...){
    .Deprecated("readRaw")
    readRaw(...)
}


#' @export
PlotLockMassCorrection <- function(x, method = 'trellis'){
    .Deprecated("plotLockMassCorrection")
    plotLockMassCorrection(x, method)
}

#' @export
PlotPrecursorHeatmap <- function(x, method = 'overlay', bins = 80){
    .Deprecated("plotPrecursorHeatmap")
    plotPrecursorHeatmap(x, method, bins)
} 

#' @export
PlotTicBasepeak <- function(x, method = 'trellis'){
    .Deprecated("plotTicBasepeak")
    plotTicBasepeak(x, method)
}


#' @export
PlotCycleTime <- function(x, method = 'trellis'){
    .Deprecated("plotCycleTime")
    plotCycleTime(x, method)
}

#' @export
PlotInjectionTime <- function(x, method = 'trellis'){
    .Deprecated("plotInjectionTime")
    plotInjectionTime(x, method)
}



#' @export
PlotMzDistribution <- function(x, method = 'trellis'){
    .Deprecated("plotMzDistribution")
    plotMzDistribution(x, method)
}

#' @export
PlotMassDistribution <- function(x, method = 'trellis'){
    .Deprecated("plotMassDistribution")
    plotMassDistribution(x, method)
}


#' @export
PlotChargeState <- function(x, method = 'trellis'){
  .Deprecated("plotChargeState")
  plotChargeState(x, method)
}

#' @export
PlotScanTime <- function(x, method = 'trellis'){
  .Deprecated("plotScanTime")
  plotScanTime(x, method)
}
protViz/rawDiag documentation built on April 29, 2024, 2:25 a.m.