search for: assaynam

Displaying 2 results from an estimated 2 matches for "assaynam".

Did you mean: assayname
2003 Nov 21
1
output files in a different directory
Yes it is. Example from my program: workdir <- "S:\\Stat\\C03202\\R-output\\" ... sink(file=paste(workdir, assayname, "-1.txt", sep="")) ... win.metafile(filename = paste(workdir, assayname, "-2%02d.wmf", sep="")) You get the idea! Kind regards, Jesper Frickmann Statistician, Quality Control Novozymes North America Inc. Tel. +1 919 494 3266 Fax +1 919 494 3460 ----...
2020 Sep 24
1
How to use `[` without evaluating the arguments.
...Query <- substitute(columnQuery) } colDataSubset <- colData(longTable)[eval(columnQuery), ] } else { colDataSubset <- colData(longTable) } rowKeys <- rowDataSubset$rowKey colKeys <- colDataSubset$colKey if (missing(assays)) { assays <- assayNames(longTable) } keepAssays <- assayNames(longTable) %in% assays assayData <- lapply(assays(longTable)[keepAssays], FUN=.filterLongDataTable, indexList=list(rowKeys, colKeys)) return(LongTable(colData=colDataSubset, colIDs=longTable at .in...