Entering edit mode
9.9 years ago
Parham
★
1.6k
Hi,
I am trying systemPipeR
manual. In the very beginning I get following error. I don't know what to do. Any help is appreciated.
Thanks!
source("systemPipeRNAseq_Fct.R")
Error in file(filename, "r", encoding = encoding) :
cannot open the connection
In addition: Warning message:
In file(filename, "r", encoding = encoding) :
cannot open file 'systemPipeRNAseq_Fct.R': No such file or direc
It doesn't say where this script is placed! Therefore I have no clue how to set the directory to it or copy it!
It's from section 2.2. from this manual if you could have a look please.
Thanks!
You don't need to do both
library()
andsource()
. Use the link I gave you to install systempipeR and then runlibrary()
, that should work.The
source()
is only if you have any custom functions to load.Oh thanks! I was doing both, now I skip
source()
.