Entering edit mode
Guest User
★
13k
@guest-user-4897
Last seen 10.2 years ago
I'm calling some R script in php and it works fine. However when I
call an R script that is using a bio-conductor package the script
doesn't run. Specifically I have the following script which works
perfectly fine in R but when I call it from php it doesn't. Note that
when I call a script that doesn't use the bio-conductor package it
works fine.
library(gcrma) //It stops before it hits the first line
print("b")
Data <- ReadAffy()
eset <- rma(Data)
write.exprs(eset, file="NormalizedDate.txt")
-- output of sessionInfo():
This is my input:
library(gcrma) //It stops before it hits the first line
print("b")
Data <- ReadAffy()
eset <- rma(Data)
write.exprs(eset, file="NormalizedDate.txt")
--
Sent via the guest posting facility at bioconductor.org.