Displaying 20 results from an estimated 2000 matches similar to: "R CMD check: no visible binding for global variable"
2011 May 05
2
R CMD check warning
Dear All,
I am trying to build a package for a set of functions. I am
able to build the package and its working fine. When I check it with
R CMD check
I get a following warning : no visible global function
definition for ‘biocLite’
I have used biocLite to load a user defined library from
within a function if that library is not pre-installed
2012 May 25
1
R memory allocation
Dear All,
I am running R in a system with the following configuration
*Processor: Intel(R) Xeon(R) CPU X5650 @ 2.67GHz
OS: Ubuntu X86_64 10.10
RAM: 24 GB*
The R session info is
*
R version 2.14.1 (2011-12-22)
Platform: x86_64-pc-linux-gnu (64-bit)
locale:
[1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
[3] LC_TIME=en_US.UTF-8 LC_COLLATE=en_US.UTF-8
[5] LC_MONETARY=en_US.UTF-8
2011 May 03
3
Axis trouble
Hello Everyone,
I am having problem in defining specific axis for
plotting a vactor.
vecAVG <- c(0.2, 0.4, 0.6, 0.2, 0.4)
names(vecAVG)<-c("brain","heart","kidney","lung","blood")
par(mar=c(12,4.1,4.1, 2.1))
2012 Apr 03
2
how to map microarray probe to gene, homology
Hi:
I have clustered microarray gene expression data and trying to map between
microarray probe, gene, pathway, gene ontology, and homology for a set of
(affy) microarray probes. Is there any package in R which facilitates this?
I am looking at bioconductor, but till now could not find a solution. A
link to some worked example would be appreciated.
Thanks and regards.
John
[[alternative HTML
2012 May 24
0
Memory allocation error
Dear All,
I am running R in a system with the following configuration
*Processor: Intel(R) Xeon(R) CPU X5650 @ 2.67GHz
OS: Ubuntu X86_64 10.10
RAM: 24 GB*
The R session info is
*
R version 2.14.1 (2011-12-22)
Platform: x86_64-pc-linux-gnu (64-bit)
locale:
[1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
[3] LC_TIME=en_US.UTF-8 LC_COLLATE=en_US.UTF-8
[5] LC_MONETARY=en_US.UTF-8
2016 Dec 16
2
Upgrading a package to which other packages are LinkingTo
On 16/12/2016 12:35 PM, Karl Millar wrote:
> A couple of points:
> - rebuilding dependent packages is needed if there is an ABI change,
> not just an API change. For packages like Rcpp which export inline
> functions or macros that might have changed, this is potentially any
> change to existing functions, but for packages like Matrix, it isn't
> really an issue at all
2009 Dec 24
1
Question to use R plot GO pie chart
Hi,
I have a list of IPI gene IDs. I want to find out whether there is a
package which can map the gene ontology to these IPIs, and plot the
pie chart to demonstrate the molecular function distributions.
The input is like the following gene IPI IDs:
IPI:IPI00008860.1|SWISS-PROT:Q9BXJ4-1|TREMBL:Q542Y2|ENSEMBL:ENSP00000231338;EN
2004 Nov 30
1
Opening connection to FTP site
Hi
Is it possible to open a connection to an FTP site such that I can read
the directory listing? Eg:
URL <- url("ftp://ftp.ensembl.org", open="r")
Error in url("ftp://ftp.ensembl.org", open="r") :
unable to open connection
URL <- url("ftp://ftp.ensembl.org")
open(URL)
Error in open.connection(URL) : unable to open connection
I think
2011 Aug 01
3
possible reason for merge not working
Hi Guys,
working on a "merge" for 2 data frames.
Using the command:
x <- merge(annotatedData, UCSCgenes, by.x="names",
by.y="Ensembl.Gene.ID", all.x=TRUE)
names and Ensembl.Gene.ID are columns with similar elements from the x
and y data frames.
annotatedData has 8909 entries, so has x(as expected). x has columns
for UCSCgenes, but there is no data in them, all
2009 Apr 07
8
Can you provide me some information on music players using ogg.
Hi ,
I am planning to use an open source .ogg player on my ARM simulator on
QEMU ( for ARM Application Baseboard ) .
So far I have been able to bring up a Linux kernel 2.6.26.5 on the
simulator . Right not I want an open source ogg vorbis player which I can
use to call the libraries and play some files . However the catch is that I
need the APIs exposed of the player application to me . I am
2002 Dec 13
1
Loading libraries: Nas introduced
Hi all,
I am trying to package a library in R 1.6.1 (Windoze XP).
I have read the document "Writing R extensions" and think I
have done things correctly (though apparently not). I have
searched the mail archives for help to no avail.
When I try to attach the library using, eg
> library( libname, lib.loc=path.to.library)
I get this message:
Warning message:
NAs introduced by
2013 May 07
1
Problem with biomaRt::getSequence.
Hi,
I can run the code some days ago . But cant run now.
Problem 1: Output is ok
ensembl = useDataset("hsapiens_gene_ensembl",mart=ensembl)
utr5 = getSequence(chromosome=3, start=185514033, end=185535839, type="entrezgene",seqType="5utr", mart=ensembl)
Output :
5utr
2019 Feb 02
5
Runnable R packages
I don't think anyone denies that you *could* make an EXE to do all
that. The discussion is on *how easy* it should be to create a single
file that contains an initial "main" function plus a set of bundled
code (potentially as a package) and which when run will install its
package code (which is contained in itself, its not in a repo),
install dependencies, and run the main()
2005 Nov 17
2
Building S4-classes, documents
Hello,
I have some troubles when building S4-class packages.
All my (S4-)code works well (without building a package).
When building a package, in the R prompt after
checking S3 generic/method consistency
Following error occurs:
Fehler: Kann R Kode in Packet 'AddNoise' nicht laden (~Error: Can not
load R code from package 'AddNoise')
(and there are some warnings after the
2019 Feb 08
2
Runnable R packages
Yesterday I wrote and submitted to CRAN a package `run`, which implements
the ideas discussed in this thread. Given a package tarball
foo_0.1.0.tar.gz, users will be able to run
Rscript -e "run::run('foo_0.1.0.tar.gz')"
which will pull all the dependencies of package `foo`, lookup a function
`main` in that package's namespace, and call it.
It's an early draft but
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
2010 Aug 04
1
error with ReadAffy()
Hi!I'm doing a little data importing from .cel files,
> setwd("/home/mandova/celfiles")
> mydata<-ReadAffy()
Error in sub("^/?([^/]*/)*", "", filenames, extended = TRUE) :
unused argument(s) (extended = TRUE)
Then I tried
> filenames<-paste("GSM",c(seq(138597,138617,1)),".cel",sep="")
>
2007 Jan 16
3
Small design question ... good or bad ...
hey guys, I am trying to add mapping functionality to the example
application from the book.
The mapping (mapquest''s openAPI) uses javascript to generate maps. So I
was thinking that I''ll have a partial view to which i''ll pass the
addresses and it''ll plot them. I''ll then put the partial view in the
main view.
Is this a good way of implementing this
2010 Sep 20
1
Please help with this error - new to
I am getting the following error in my script. I am very very new to R and
have obtained this script from another person.
#read file in (dummy data)
starburst.plot<-function(affy.fold, affy.FDR)(ifelse( ((affy.fold) >=0),
-1*log10(affy.FDR), 1*log10(affy.FDR)))
starburst.plot<-function(meth.fold, meth.FDR)(ifelse( ((meth.fold) >=0),
-1*log10(meth.FDR), 1*log10(affy.FDR)))
At my next
2007 Oct 24
3
how to loop over a group of variables?
Hi All,
I have a data frame with a group of variables named b1, b2, b3, ..., b18. These variables take the value 1, 2 or NA. For each observation, I want to do some computation by looping over the values for the group of variables: b1 to b18. In STATA I would do:
forval i=1/18 {
--- use b`i' for computation ----
}
How can this be done in R?
Deepankar