sriramlab / SCORE

SCalable genetic CORrelation Estimator
8 stars 1 forks source link

Installation on server without root #5

Open agave82 opened 2 years ago

agave82 commented 2 years ago

The recommended installation worked on MacOS and CentosOS but on a server with more restriction it did not work This solved the issue:

module load gcc/4.9.3 module load cmake/3.14.4 git clone https://github.com/sriramlab/SCORE.git cd SCORE mkdir build cd build cmake -DCMAKE_CXX_COMPILER=/app/gcc/4.9.3/bin/g++ -DCMAKE_C_COMPILER=/app/gcc/4.9.3/bin/gcc ../ make