Using R Studio on Cloud
1
0
Entering edit mode
3.8 years ago
lokraj2003 ▴ 120

I don't know if it is the right platform to ask this question. But, I could not find any better place than this to ask this question.

I am trying to do some single-cell analysis for a group project. I have about 500 MB of data (count matrixes). I am not able to run any analysis on my PC where I have 8GB RAM. Then I tried to use rstudio.connect. I could not even upload all the files there. The session gets disconnected within a few minutes. Then, I bought a Rstudio Droplet from Digital Ocean. It is worse than rstudio cloud. I could use HPC from my university then I won't be able to run any Rmd files. I tried to use docker on HPC, but I don't have permission to create a docker image. So, my question is what other options are available for working with moderate size data on R Studio. I would not mind paying a few bucks?

Thanks

Single Cell RNA-Seq R rstudio • 1.8k views
ADD COMMENT
0
Entering edit mode

You can render .Rmd files on your university's HPC. I create the .Rmd file locally, and send it to the cluster. I have a script there called render.R that looks like this:

rmarkdown::render("path/to/uploaded/file.Rmd")

I then submit a job calling that script (my uni uses slurm, your job-submission protocol might be different):

sbatch -t 24:00:00 -c 2 --mem=80G --wrap="Rscript /path/to/render.R"

I make sure to save my single cell objects at the end of the analysis, and you get a nice .html output with plots / whatever else you want which you can then send back to your local machine and view.

ADD REPLY
0
Entering edit mode

You could look at Cyverse it maintains VICE which have Rstudio image. You have to have free cyverse account, it provide you also with some disk space for your files in Discovery Environment. However I don't know more, I use it only for data sharing.

ADD REPLY
0
Entering edit mode
2.9 years ago
darklings ▴ 570

The RStudo Server allows you to use the RStudio IDE on HPC, eg by launching http://localhost:8787/ through the browser, but you may have to ask the technology team from your university first

ADD COMMENT

Login before adding your answer.

Traffic: 2291 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6