R/TwoColor.R

Defines functions processTwoColor UPC_TwoColor SCAN_TwoColor

Documented in SCAN_TwoColor UPC_TwoColor

##########################################################################
# Copyright (c) 2012 W. Evan Johnson, Boston University School of Medicine
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
##########################################################################

SCAN_TwoColor = function(inFilePattern, outFilePath=NA, batchFilePath=NA, verbose=TRUE)
{
  if (is.na(batchFilePath))
    return(processTwoColor(inFilePattern, outFilePath=outFilePath, verbose=verbose))

  expressionSet = processTwoColor(inFilePattern, outFilePath=NA, verbose=verbose)
  expressionSet = BatchAdjustFromFile(expressionSet, batchFilePath)

  if (!is.na(outFilePath))
    write.table(round(exprs(expressionSet), 8), outFilePath, sep="\t", quote=FALSE, row.names=TRUE, col.names=TRUE)

  return(expressionSet)
}

UPC_TwoColor = function(inFilePattern, outFilePath=NA, modelType="nn", convThreshold=0.01, batchFilePath=NA, verbose=TRUE)
{
  if (!is.na(batchFilePath))
  {
    expressionSet = SCAN_TwoColor(inFilePattern, outFilePath=NA, batchFilePath=batchFilePath, verbose=verbose)
    expressionSet = UPC_Generic_ExpressionSet(expressionSet, modelType=modelType, convThreshold=convThreshold, verbose=verbose)

    if (!is.na(outFilePath))
      write.table(round(exprs(expressionSet), 8), outFilePath, sep="\t", quote=FALSE, row.names=TRUE, col.names=TRUE)

    return(expressionSet)
  }

  return(processTwoColor(inFilePattern, outFilePath=outFilePath, upcModelType=modelType, upcConv=convThreshold, verbose=verbose))
}

processTwoColor = function(inFilePattern, outFilePath=NA, upcModelType=NA, upcConv=0.01, verbose=TRUE)
{
  fromGEO = shouldDownloadFromGEO(inFilePattern)
  if (fromGEO)
    inFilePattern = downloadFromGEO(inFilePattern)

  inFilePaths = list.files(path=dirname(inFilePattern), pattern=glob2rx(basename(inFilePattern)), full.names=TRUE, ignore.case=TRUE)

  if (length(inFilePaths) == 0)
    stop("No input files matched the pattern: ", inFilePattern)

  outData = NULL

  for (inFilePath in inFilePaths)
  {
    message(paste("Normalizing", inFilePath))
    normData = normalizeArray(filename = inFilePath)

    if (!is.na(upcModelType))
    {
      if (verbose)
        message(paste("Performing UPC transformation (", upcModelType, ") for first channel of ", inFilePath, sep=""))

      normData$norm[,1] = round(UPC_Generic(2^normData$norm[,1], modelType=upcModelType, convThreshold=upcConv), 6)

      if (verbose)
        message(paste("Performing UPC transformation (", upcModelType, ") for second channel of ", inFilePath, sep=""))

      normData$norm[,2] = round(UPC_Generic(2^normData$norm[,2], modelType=upcModelType, convThreshold=upcConv), 6)
    }

    outSampleData = cbind(normData$probeID[,1], normData$norm)
    colnames(outSampleData) = c("ProbeID", paste(basename(inFilePath), c("Channel1", "Channel2"), sep="_"))

    if (is.null(outData))
    {
      outData = outSampleData
    } else {
      if (verbose)
        message(paste("Merging results for ", inFilePath, "."), sep="")

      if (all(outData[,1] == outSampleData[,1]))
      {
        outData = cbind(outData, outSampleData[,2:3])
      }
      else {
        warning(paste(inFilePath, " has different features than the previous file(s), so an attempt will be made to match by feature name. However, because there are duplicate feature names on these arrays, proceed with caution."), immediate. = TRUE)
        outData = merge(outData, outSampleData, by=1, sort=FALSE)
      }
    }
  }

  # Account for duplicate feature names so we can put it in an ExpressionSet object
  featuresTable = table(outData[,1])
  duplicateFeatureNames = sort(names(featuresTable)[featuresTable>1])
  duplicateFeatureIndices = which(outData[,1] %in% duplicateFeatureNames)

  message("Updating duplicate probe names.")
  outData[duplicateFeatureIndices,1] = paste(outData[duplicateFeatureIndices,1], 1:length(duplicateFeatureIndices), sep="_")

#  for (i in 1:length(duplicateFeatureNames))
#  {
#    feature = duplicateFeatureNames[i]
#print(feature)
#print(featuresTable[feature])
#print(paste(i, " / ", length(duplicateFeatureNames)))
#  
#    indices = which(outData[,1]==feature)
#    outData[indices,1] = paste(outData[indices,1], 1:length(indices), sep="_")
#  }
#print(featuresTable)
#print(outData[1:10,1])
#  nonControlFeatures = names(featuresTable)[featuresTable==1]
#print(head(nonControlFeatures))
#print(outData[,1] %in% nonControlFeatures)
#  outData = outData[which(outData[,1] %in% nonControlFeatures),]
#print(dim(outData))
#print(head(outData))
#stop()

  featureNames = outData[,1]
  sampleNames = colnames(outData)[-1]
  exprData = apply(outData[,-1], 2, as.numeric)
  rownames(exprData) = featureNames
  colnames(exprData) = sampleNames

  if (!is.na(outFilePath))
  {
    if (verbose)
      message(paste("Saving results to", outFilePath))

    write.table(exprData, outFilePath, sep="\t", quote=FALSE, row.names=TRUE, col.names=TRUE)
  }

  # Create ExpressionSet object
  expressionSet = ExpressionSet(exprData)
  sampleNames(expressionSet) = sampleNames
  featureNames(expressionSet) = featureNames

  if (fromGEO)
    unlink(inFilePaths)

  return(expressionSet)
}

Try the SCAN.UPC package in your browser

Any scripts or data that you put into this service are public.

SCAN.UPC documentation built on Nov. 8, 2020, 11:10 p.m.