R/spectraProcessingFunction.r

#' Create defb SQLite database 
#' Should work for mzML, mzXML, mgf, and txt data input
#' 
#'  
#' @param rawDataFilePath filepath of the data
#' @param sampleID the sample ID to be read and added to the database
#' @param userDBCon database connection (checked out pool)
#' @param acquisitionInfo acquisitionInfo (currently only used when converting from Bruker raw data)
#'
#' @return the peak list modifed by binning then subtractng the matrix sample,
#' @export
spectraProcessingFunction <- function(rawDataFilePath,
                                      sampleID,
                                      userDBCon, 
                                      acquisitionInfo){
  
  
  sampleID <- ghosts::cleanWSpace(sampleID)
  

# Create version and metadata SQL tables ----------------------------------

  
  # Isn't currently used, but here to help future-proof
  ghosts::sqlCreate_version(userDBCon = userDBCon)
  #----
  
  # Isn't currently used, but here to help future-proof
  # Inserts current locale info 
  ghosts::insertLocale(userDBCon = userDBCon)
  
  # If sample ID doesn't exist, create it in table
  # TODO: userprompt with option to change ID
  ghosts::createMetaSQL(sampleID = sampleID,
                          userDBCon = userDBCon)
  
  

# Create XML table --------------------------------------------------------

  
  
  # Make connection to mzML file
  mzML_con <- mzR::openMSfile(rawDataFilePath,
                              backend = "pwiz")
  
  XMLinfo <- ghosts::createXMLSQL(rawDataFilePath = rawDataFilePath,
                                    userDBCon = userDBCon,
                                    mzML_con = mzML_con)
  
  
  # Get number of spectra contained in mzML
  scanNumber <- nrow(mzR::header(mzML_con))
  
  
   # mzML_con <<- mzML_con
   # scanNumber <<- scanNumber
   # userDBCon <<- userDBCon
   # sampleID <<- sampleID
   # XMLinfo <<- XMLinfo
   # rawDataFilePath <<- rawDataFilePath
   # acquisitionInfo <<- acquisitionInfo
   #stop()

  ghosts::createSpectraSQL(mzML_con = mzML_con,
                             scanNumber = scanNumber,
                             userDBCon = userDBCon,
                             sampleID = sampleID,
                             XMLinfo = XMLinfo, 
                             acquisitionInfo = acquisitionInfo)
}
chasemc/ghosts documentation built on May 8, 2019, 12:50 a.m.