uclahs-cds / project-method-AlgorithmEvaluation-BNCH-000082-SRCRNDSeed

GNU General Public License v2.0
1 stars 0 forks source link

Plot seed variability #100

Closed philsteinberg closed 1 year ago

philsteinberg commented 1 year ago

Description

Script for scatterplot comparing the number of subclones observed with the mode number of subclones observed across all 10 seeds.

Closes #99

Checklist

Analysis Results

philsteinberg commented 1 year ago

Ran all of the TEST files from the script in R studio. Not sure why running the above command in VSCode does not work. I loaded R and submitted the example command. Do I need to load other modules or set up an environment to run Rscripts from the command line? I am not sure why module load argparse does not work.

Error in library(argparse) : there is no package called ‘argparse’

lydiayliu commented 1 year ago

mean number of subclones

Do you mean mode?

Ran all of the TEST files from the script in R studio. Not sure why running the above command in VSCode does not work. I loaded R and submitted the example command. Do I need to load other modules or set up an environment to run Rscripts from the command line? I am not sure why module load argparse does not work.

argparse is probably not installed for R on the cluster. Doing module load doesn't load additional R packagaes unforatunately. You should be able to do install.packages('argparse') in interactive R on the cluster to install it.

philsteinberg commented 1 year ago

Do you mean mode?

Yes, sorry, corrected.

argparse is probably not installed for R on the cluster. Doing module load doesn't load additional R packagaes unforatunately. You should be able to do install.packages('argparse') in interactive R on the cluster to install it.

Thanks, it works.