The BaMORC package is designed to facilitate protein NMR research with an easy-to-use tool that detects and corrects 13C referencing errors before and after the protein resonance assignment step.

Key features:

  • Functions for calculating referencing correction value for assigned and unassigned carbon protein NMR spectra: bamorc() and unassigned_bamorc().

  • Functions for data processing:
  • JPred secondary structure estimation wrapper: jpred_fetcher().

  • CLI functions for using shell.

BaMORC wouldn’t be possible without the hard work of the authors of RBMRB and jpredapir. Thanks!

Installation

The latest stable version can be installed from CRAN:

The latest development version can be installed from github:

# install.packages("devtools")
devtools::install_github('https://github.com/MoseleyBioinformaticsLab/BaMORC')

Installing unassigned BaMORC dependencies:

To use unassigned protein NMR reference correction method, SSC (Variance informed DBSCAN for protein NMR spin system clustering.) docker image is required and user need to install docker and SSC docker image

  • Install Docker from here.

  • Install SSC docker image after docker is installed by running following code:
docker pull moseleybioinformaticslab/ssc .

Package usage:

For detailed usage tutorial please refer to Quick Start

CLI usage:

To use “BaMORC CLI”, you need to find the CLI run-script. Open terminal and type the following code:

> R -e 'system.file("exec", "bamorc.R", package = "BaMORC")'

You will see the R script location print out in the terminal as shown in following image.

And to test the R CLI script using the following pattern.

> <path to the R ClI scirpt>/bamorc.R -h

In my example code, it should be like:

> /Users/bill/Library/R/3.5/library/BaMORC/exec/bamorc.R -h

For detailed documation please refere to CLI guide