Displaying 20 results from an estimated 100 matches similar to: "Can't make affylmGUI work"
2008 Jun 27
1
question on affylmGUI / oneChannelGUI
Hi everyone.
I installed affylmGUI and oneChannelGUI package on R 2.7.1 with the
latest version of BioC.
After I start R, I do get an error that says "Error in
loadNamespace(name) : there is no package
called 'affylmGUI'" and a pop-up window with a message "fatal error :
unable to restore saved data
in .Rdata". I would really appreciate your suggestions on how to fix
2010 Nov 29
2
Problems in running affylmGUI
Hi,
I am trying to run affylmGUI on my mac computer. I have already
installed the Tlc package as well as Bwidgets through ActiveTcl
conversion installing files.
However, when running affylmGUI() on R, I keep getting the message in
the attached file.
I have copied the tcl folders from the root library to the user
library, and have obtained the same issue.
I would really appreciate if
2007 Aug 03
4
FW: Selecting undefined column of a data frame (was [BioC] read.phenoData vs read.AnnotatedDataFrame)
Hi all,
What are current methods people use in R to identify
mis-spelled column names when selecting columns
from a data frame?
Alice Johnson recently tackled this issue
(see [BioC] posting below).
Due to a mis-spelled column name ("FileName"
instead of "Filename") which produced no warning,
Alice spent a fair amount of time tracking down
this bug. With my fumbling fingers
2008 Jan 16
1
affylmGUI
I have been trying to use the package affylmGUI but keep getting the error message that it cannot find the package "Bwidget". I have downloaded the activeTcl for Windows and installed it in the default location C:\Tcl. The problem still persists. I have also tried to copy the files from C:\Tcl\lib into the C:\Arquivos de programas\R\R-2.6.1\Tcl\lib but the problem still there.
Any help
2006 Feb 02
2
Request for users of my R-Tcl/Tk examples, limmaGUI or affylmGUI
[PLEASE REPLY _OFF_ THE LIST, i.e. DON'T CC to r-help at ...]
Hi,
I don't see this sort of thing very often on the mailing lists, so list
moderators and others should feel free to tell me if it breaches list
etiquette and/or delete my post if necessary. But I can't see what harm
it could do...
I am just wondering approximately how many people use / have used some of
the R stuff
2015 Jan 14
0
Is the tcltk failure in affylmGUI related to R bug 15957
Seems unlikely that that particular bug is involved. I seem to recall some change related to inadvertent variable capture in .TkRoot$env (?). At any rate, we currently have
> parent.env(.TkRoot$env)
<environment: R_EmptyEnv>
which used to be
> parent.env(.TkRoot$env)
<environment: R_GlobalEnv>
as a result, this won't work any more because R_EmptyEnv has no operators and
2015 Jan 18
1
Is the tcltk failure in affylmGUI related to R bug 15957
Thanks Peter and Dan for your replies.
After learning a bit more about tcltk and environments etc. I have replaced
Try(n <- evalq(TclVarCount <- TclVarCount + 1, .TkRoot$env))
with
Try(n <- .TkRoot$env$TclVarCount <- .TkRoot$env$TclVarCount +1L)
as you suggest.
It now works for both R-3.1.1 and R-3.1.2+
(My understanding is that the Try function is there to put a GUI box
2008 Feb 27
2
problem with creation of eSet
Hi,
I am having troubles with creating an eSet and would appreciate any help on
the following problem.
I am trying to create an eSet using the following code
pd <- read.table(file="pdata.txt",header =TRUE,row.names=1);
colnames(pd) <- c("type","tumor","time","id");
pdN <- list(type =
2008 Mar 20
2
Error in function (classes, fdef, mtable): unable to find an inherited method for function "indexProbes", for signature "exprSet", "character"
Hello Everyone,
I am writing programs in R from 7 months and I am able to solve most of the
errors/issues except for this current post.
My Task is to read a Microsoft Excel file(textE_to_affy.csv) which contains
the Microarray Expression Values collected from the Illumina Microarray
experiment. These collected intensity values need to be normalized(Rank
Invariant Normalization) by using the R
2015 Jan 14
2
Is the tcltk failure in affylmGUI related to R bug 15957
I maintain the package affylmGUI. It works when installed on many
previous versions of R. I have today tested exactly the same code under
R-2.15.3, R-3.0.2, R-3.1.0, R-3.1.1, R-3.1.2 and R-devel.
I have also tested the versions of affylmGUI downloaded by biocLite for
each version of R and the same result applies.
I have no errors under 2.15.3, 3.0.2, 3.1.0 and 3.1.1. The following
error
2008 Feb 25
0
Memory problem with 64bit R using PLASQ500k
Dear all,
First I apologize for cross-posting, but I think that this could be of
interest to BioC users, too.
For DNA copy-number analysis I have downloaded PLASQ500K from:
http://genome.dfci.harvard.edu/~tlaframb/PLASQ/
After creating sub-directories SND and STD containing 3 Sty Mapping arrays
each, I tried to compute parent-specific copy number:
> library(PLASQ500K)
> psCN <-
2008 Mar 27
1
snow, stopping cluster
Hello,
is there any function in the package snow to check for a really running
cluster?
The function checkCluster only checks the variable cl. And the variable
is still available after stopping the cluster!
( a simple solution would be deleting the cluster variable cl in the
function stopCluster)
> library(snow)
> cl <- makeCluster(5)
5 slaves are spawned successfully. 0
2012 Nov 26
1
A problem subsetting a data frame
Hi all,
I have this microarray large microarray data set (ALL) from which I would like to subset or extract a set of data based on a factor ($mol.biol). I looked up some example of subsetting in, picked up two commands and tried both but I got error messages as follows
> testset <- subset(ALL, ALL$mol.biol %in% c("BCR/ABL","ALL1/AF4"))
>> Error in
2009 Jan 27
1
Problem with RMA using limma, oligo and pdInfoBuilder packages
Hi,
I am a Ph.D. student from Québec, Canada. I’m a beginner with R and
Bioconductor. Until now the only experience I have is in analyzing
microarray data using affy and limma packages. Now I am trying to analyze
Rat Gene 10 st arrays and I would like to run RMA analysis and Smyth
moderated t test on those arrays. Since no cdf official package is available
for those arrays, after reading many
2015 Feb 18
0
smoothScatter() and the KernSmooth package
Dear R-devel,
my Bioconductor EDASeq package has a function MDPlot that uses the
smoothScatter() function from the graphics package. When I test this
package on travis-ci.org (R CMD check) I get the following error
(which I don't get on my machine nor on the Bioconductor build
system).
* checking examples ... ERROR
Running examples in ?EDASeq-Ex.R? failed
The error most likely occurred in:
2010 Mar 29
1
stuck with affy / limma
Hi,
I have a question concerning the analysis of some affymetrix chips. I
downloaded some of the data from GEO GSE11324 (see below). In doing so I'm
stuck after I identified the probesets with significant changes. I have
problems in assigning probeset specific gene names as well as getting the
genomic coordinates. Furthermore I have no clue how to deal with the fact,
that most genes have
2009 May 06
1
[Fwd: loading SPOT file]
-------------- next part --------------
An embedded message was scrubbed...
From: Barbara Cegielska <barceg at ibch.poznan.pl>
Subject: loading SPOT file
Date: Wed, 06 May 2009 16:48:35 +0200
Size: 1151
URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20090506/e35e3f7e/attachment-0002.eml>
2009 Feb 12
0
Error Message: Error in dim(data) <- dim : attempt to set an attribute on NULL
I have the following code, from which I get the following error message:
Error in dim(data) <- dim : attempt to set an attribute on NULL
I think the error is coming from the part of my code in BOLD RED. The script works fine until then.
#Load libraries
source("http://bioconductor.org/biocLite.R")
biocLite()
library(limma)
library(Biobase)
#change directory to folder where
2007 Dec 20
1
custom subset method / handling columns selection as logic in '...' parameter
Dear R-helpers & bioconductor
Sorry for cross-posting, this concerns R-programming stuff applied on
Bioconductor context.
Also sorry for this long message, I try to be complete in my request.
I am trying to write a subset method for a specific class (ExpressionSet
from Bioconductor) allowing selection more flexible than "[" method .
The schema I am thinking for is the following:
2008 Nov 03
1
Help with 'annotation' in GOHyperGParamsClass
Dear cateGOry experts,
hyperGTest documentation states that YEAST cannot be used as 'annotation'
when evaluating gene ontology representation status for a given set of
'geneIds'.
Because I am using a custom print I believe I need to create my own data
package to use as the annotation file for 'annotation'. Can someone please
describe how to make a data package that will