extr1chan: Extract just one series, ie channel, of list of arrays

View source: R/extract1chan.R

extr1chanR Documentation

Extract just one series, ie channel, of list of arrays

Description

This function was designed for handeling measurements stored as list of multiple arrays, like eg compound-screens using microtiter-plates where multiple parameters ('channels') were recorded for each well (element). The elements (eg compounds screened) are typcally stored in the 1st dimension of the arrays, the replicated in the secon dimension and different measure types/parameters in the 3rd chanel. In order to keep the structure of of individual microtiter-plates, typically each plate forms a separate array (of same dimensions) in a list. The this function allows extracting a single channel of the list of arrays (3rd dim of each array) and return row-appended matrix.

Usage

extr1chan(arrLst, cha, na.rm = TRUE, rowSep = "__")

Arguments

arrLst

(list) list of arrays (typically 1st and 2nd dim for specific genes/objects, 3rd for different measures associated with)

cha

(integer) channel number

na.rm

(logical) default =TRUE to remove NAs

rowSep

(character) separator for rows

Value

list with just single channel extracted

See Also

organizeAsListOfRepl

Examples

arr1 <- array(1:24,dim=c(4,3,2),dimnames=list(c(LETTERS[1:4]),
  paste("col",1:3,sep=""),c("ch1","ch2")))
arr2 <- array(74:51,dim=c(4,3,2),dimnames=list(c(LETTERS[1:4]),
  paste("col",1:3,sep=""),c("ch1","ch2")))
arrL1 <- list(pl1=arr1,pl2=arr2)
extr1chan(arrL1,ch=2)

wrMisc documentation built on Nov. 17, 2023, 5:09 p.m.