Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
509 views

R + Bioconductor : combining probesets in an ExpressionSet

First off, this may be the wrong Forum for this question, as it's pretty darn R+Bioconductor specific. Here's what I have: library('GEOquery') GDS = getGEO('GDS785') cd4T = GDS2eSet(GDS) cd4T <- ...
5
votes
2answers
1k views

rpy2: Converting a data.frame to a numpy array

I have a data.frame in R. It contains a lot of data : gene expression levels from many (125) arrays. I'd like the data in Python, due mostly to my incompetence in R and the fact that this was supposed ...
4
votes
1answer
355 views

Resolving a 'model empty' error in cross-validation for SVM classification when using the CMA Bioconductor package for R

I am using the Bioconductor package CMA to perform internal, Monte Carlo cross-validation (MCCV) on SVM classifiers in a microarray dataset. CMA internally uses the e1071 R package for the SVM work. ...
4
votes
2answers
655 views

multiFASTA file processing

I was curious to know if there is any bioinformatics tool out there able to process a multiFASTA file giving me infos like number of sequences, length, nucleotide/aminoacid content, etc. and maybe ...
3
votes
1answer
67 views

Subset of ESet /dividing ESet

Is it possible to subset a ExpressionSet like this: SUB=ESet[,ESet@phenoData@data$x==c(0,1)] in X are values from 0-9, and I just want the entries when x=0 or x=1.
2
votes
2answers
205 views

Hidden Markov Models inplementation in R or python [closed]

Do you know any good literature and/or tutorials about how to implement HMM in python, R (Bioconductor)? (especially for sequence analysis)
2
votes
1answer
115 views

ExpressionSet subsetting

I have an ExpressionSet object that I want to subset. For example, > str(ESet) Formal class 'ExpressionSet' [package "Biobase"] .. ..@ assayData :.. ..@ phenoData : ...
2
votes
0answers
295 views

R package Limma -contrast matrix differential expression

I am using limma to analyse differential gene expressions. For modeling u need a design and contrast matrix. I just want to know whether anyone has experience with it. Suppose that expressions are ...
1
vote
1answer
93 views

geneplotter installation error

I've during the geneplotter (Bioconductor package) installation. I'm using R 2.14 on Linux Mint 9. I think the namespace is responsible for this but I don't know how to fix it ... Here's the error : ...
1
vote
1answer
70 views

BSgenome data loading problem for applying in biostrings package function

I installed BSgenome seems working but I am not able to load library. The following code are from Biostrings package > require(BSgenome) > require(Biostrings) > ...
1
vote
1answer
138 views

Using GEOquery and SAM/Siggenes in R

I very recently started learning R as a result of a need and so far, so good, I think. But I'm still in the very early stages. I am however faced with this major urgent challenge in R that I will ...
1
vote
1answer
191 views

Extract raw data from affyBatch object

I have an affyBatch object with gene expression data. The data is read in using dat <- ReadAffy() with no options. I then extract the 5600 genes that I am interested in using, dat <- ...
1
vote
1answer
79 views

ExpressionSet (ESet) delete entry with NA

I am try to exclude all my sample out of a ESet which have for a one of 10 phenotype no entry: I have a ESet with 50 samples and 10 phenotypes. Sample A has NA in Phenotype 1 and Sampe B in Phenotype ...
1
vote
0answers
55 views

intersecting ranges of a subject and a very large query data.frame

I am trying to use Bioconductor packages IRanges and GenomicRanges to find intersecting ranges and coverage. How can one perform this operation if the data.frame containing the query is several ...
1
vote
3answers
131 views

In R, how do I set an S4 class based on another object's class

I need to create an object of type ShortReadQ from Bioconductor's ShortRead library. ShortReadQ 'signature(sread = "DNAStringSet", quality = "QualityScore", id = "BStringSet")' The ...
1
vote
3answers
490 views

R error allocMatrix

HI all, I was trying to load a certain amount of Affymetrix CEL files, with the standard BioConductor command (R 2.8.1 on 64 bit linux, 72 GB of RAM) abatch<-ReadAffy() But I keep getting this ...
1
vote
2answers
117 views

R statistical package: wrapping GOFrame objects

I'm trying to generate GOFrame objects to generate a gene ontology mapping in R for unsupported organisms (see ...
1
vote
2answers
849 views

Installing a local package that's not a .tar.gz

I'm working on a script that creates a package in the current directory (using pdInfoBuilder from BioConductor), and I'd like to install it while the script is running. install.packages() with ...
0
votes
0answers
14 views

Error in setupMethods(standard.generic)

I was trying to use Biobase expression set for handling microarray data. I tried using pData function for handling phenodata for this microarray data but when I use the command: ...
0
votes
1answer
20 views

Converting RleViews to a matrix

Is there a faster way to convert a RleViews object (which contains elements of the same length) to a matrix object? I usually use viewApply(x, as.vector) Tnx!
0
votes
1answer
64 views

R Bioconductor: Getting a SwissProt ID from Gene Symbol and Vice Versa

Hi guys I'm new to Bioconductor and trying to find the right package to be able to do what I want to..which is give a SwissProt ID and give me the Gene Symbol or vice versa. There's a lot of packages ...
0
votes
1answer
159 views

Expressionset - phenodata

I must start by saying that I'm just beginning to program using R. I'm unable to create expressionset of my data. When I try to put assaydata and phenodata together to make expressionset, I get an ...
0
votes
1answer
102 views

RPy2 and Bioconductor: gene expression example

I'm trying to work out how to do the classic gene expression example in Bioconductor using Rpy2, and I'm stuck right at the beginning. How do you load the data? In R we do: > library('ALL') > ...