Although I successfully installed the package "simpleaffy'' , I cannot library it. Why?
if (!requireNamespace("BiocManager", quietly = TRUE)) install.packages("BiocManager")
BiocManager::install("simpleaffy")
library("simpleaffy")
Error in library("simpleaffy") :There is no package named 'simpleaffy'
# include your problematic code here with any corresponding output
# please also include the results of running the following in an R session
sessionInfo( )
Thank you very much for your answer. I'm a green hand. I read this code in a book. I would like to know if there is a substitute for these deleted R packets, or can you tell me the available R packets for analyzing the data of gene chip?
You should use
oligo
instead.simpleaffy
was meant to work with theaffy
package, which itself has been superceded byoligo
. If you want a good primer, you could read the End to End workflow.Thank you very much for your answer, your answer is excellent 👍🏻.
I tried also with oligo does not work, any other suggestion?
Please don't piggyback on posts from 2.3 years ago. If you have a question, post as a new question.