I am a totally new user of R, now I need to download and unzip http://gdac.broadinstitute.org/runs/code/firehose_get_latest.zip in my R, I have tried the code:
temp <- tempfile()
> download.file("http://gdac.broadinstitute.org/runs/code/firehose_get_latest.zip",temp)
however, when I tried the following code:
data <- read.table(unz(temp, "firehose_get_latest"))
it showed that
Error in open.connection(file, "rt") : cannot open the connection In addition: Warning message: In open.connection(file, "rt") : cannot locate file 'firehose_get_latest' in zip file '/tmp/RtmpotKFGQ/file11ff4f04fe46'
So what should I do to then?
ANY HELP ARE APPRECIATED!