plmc
Inference of couplings in proteins and RNAs from sequence variation
File Explorer
Download Latest Version (.zip)- end_to_end.yml
- main.yml
- .gitignore
- potts3.a2m
- DHFR.a2m
- DHFR.png
- RF00162.fasta
- RF00162.png
- .gitignore
- export_couplings_json.m
- plot_coupling_scores.m
- read_params.m
- run_examples.m
- arithmetic_ansi.h
- arithmetic_sse_double.h
- arithmetic_sse_float.h
- inference.h
- lbfgs.h
- plm.h
- twister.h
- weights.h
- lbfgs.c
- twister.c
- inference.c
- main.c
- plm.c
- weights.c
- DHFR.couplings
- DHFR_weights_raw.txt
- protein.sh
- LICENSE
- makefile
- README.md
# Installation Guide
git clone https://github.com/debbiemarkslab/plmc
Downloads the entire project code from GitHub to your computer.
cd plmc
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- Homebrew A package manager for macOS/Linux.
brew install libomp
Installs the pre-built package via Homebrew β no source build required.
Pulled directly from this repo's README.
3. Make
Medium- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make all-openmp
Compiles the code based on the generated build configuration to produce an executable.
make all-mac-openmp
Compiles the code based on the generated build configuration to produce an executable.
make all
Compiles the code based on the generated build configuration to produce an executable.
make all-mac
Compiles the code based on the generated build configuration to produce an executable.
make all-openmp32
Compiles the code based on the generated build configuration to produce an executable.
Pulled directly from this repo's README.
