-
I am running I thought I could use the R Studio server to run the code with more memory. When I tried opening each server, it seemed like they were frozen! I was unable to interact with R Studio through the server on roadrunner (I tried clicking things and nothing happened), and the R Studio server on emu was stuck for ~10 minutes trying to terminate R. Any suggestions for using the servers, or any non-server workarounds/suggestions for processing my files? |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 24 replies
-
For reference, here's my script: https://github.com/RobertsLab/project-oyster-oa/blob/master/code/Haws/04-methylKit.Rmd#L105 In a previous iteration of the script, I was able to process my files without errors: https://yaaminiv.github.io/Hawaii-Gigas-Methylation-Analysis-Part7/ I'm testing the |
Beta Was this translation helpful? Give feedback.
-
Can you please clarify this point? What do you mean "each server"? Meaning Emu and Roadrunner? I logged into RStudio Server on both computers without issue (with my user account). This might suggest that you already had an existing RStudio Server session open from previous usage. Possibly tied into the default behavior where RStudio attempts to load the last used RStudio session. If the previous session had a lot of variables/dataframes (and, those things contained large amounts of data), it might cause the session to freeze and/or take a long time to open as it loads all of those things into memory. I'll see if I can figure out how to disable this "feature" for you. Also, which user account are you using? |
Beta Was this translation helpful? Give feedback.
-
is mox a viable option here? I have always had issues with R Server.
…On Mon, Mar 8, 2021 at 1:13 PM Yaamini Venkataraman < ***@***.***> wrote:
Still frozen on my script when I log into the srlab account
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#1137 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABB4PN6ALSQJSNK6CVWKLGLTCU4WZANCNFSM4YYMND7Q>
.
|
Beta Was this translation helpful? Give feedback.
-
My 2 cents is make sure it goes error free on locally on your laptop before
moving off to new platform (noting I get a earlier methylkit error trying
to reproduce your code.
…On Mon, Mar 8, 2021 at 1:33 PM kubu4 ***@***.***> wrote:
It's basically the same thing as running an R script from any command line:
R name_of_R-script.R
So, inside an SBATCH script for Mox, you'd have all of your header junk
specifying run time, directory, etc. Then, you'd have the line above which
would call and execute an R script that you have somewhere.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#1137 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABB4PNZDBGTNQHBZ5OU5PULTCU6VTANCNFSM4YYMND7Q>
.
|
Beta Was this translation helpful? Give feedback.
-
Update: was able to run Still working on debugging script with Manchester data, before running the same code on the Hawaii data on Mox. |
Beta Was this translation helpful? Give feedback.
Update: was able to run
filterByCoverage
andnormalizeCoverage
with the Manchester data (8 samples) without running into a vector memory issue. So I think R was having a problem with the amount of data being processed at once (24 Hawaii samples).Still working on debugging script with Manchester data, before running the same code on the Hawaii data on Mox.