Combining/concatenating more than two expressionsets in R

时间:2016-04-25 08:51:55

标签: r set expression concatenation

I do have several Expressionsets (Eset) that I would like to combine together. I found a package to combine two Esets but I have around 10 Esets which I want to combine. here is the package that combines two Esets with the example:

library('a4Base')

## Not run: 
# prepare and combine two ExpressionSet

data(data.H2009); data(phenoData.H2009)
data(data.SKOV3); data(phenoData.SKOV3)

eH2009 <- prepareExpressionSet(exprs = data.H2009, phenoData = phenoData.H2009, changeColumnsNames = TRUE)
eSKOV3  <- prepareExpressionSet(exprs = data.SKOV3, phenoData = phenoData.SKOV3, changeColumnsNames = TRUE)

newE <- combineTwoExpressionSet(eH2009,eSKOV3)

## End(Not run)

Is there any way that I could combine them all at once?

Thanks in advance,

1 个答案:

答案 0 :(得分:0)

我终于找到了解决方案。 有一个名为InsilicoMerging的包。

我发布了答案,以防有人问我的问题。

看看这个: InSilicoMerging