@francaklaeren I took a look at this and I would suggest that rather than running cor() between the 2 matrixes, which takes reaaaaally long and (I think) makes some unnecessary calculations, it will be better if you replace the
cor(prism.exp_corr_cleaned, prism.cnv_corr_cleaned, method= c("spearman"))
with a loop using gene names.
z.B (using the list as you had used somewhere in your code before):
@francaklaeren I took a look at this and I would suggest that rather than running cor() between the 2 matrixes, which takes reaaaaally long and (I think) makes some unnecessary calculations, it will be better if you replace the
cor(prism.exp_corr_cleaned, prism.cnv_corr_cleaned, method= c("spearman"))
with a loop using gene names.z.B (using the list as you had used somewhere in your code before):