902 bytes added,
10:44, 31 July 2014 = Bmrblib =
Bmrblib is a Python API abstracting the Biological Magnetic Resonance Data Bank (BioMagResBank or BMRB) NMR-STAR format (http://www.bmrb.wisc.edu/). It allows the writing of NMR-STAR files for BMRB data deposition and the reading and easy extraction of data from files residing in the BMRB data bank, all without knowledge of the Self-Defining Text Archive and Retrieval (STAR) format.
== Linux and Mac ==
Remember to check, if there are newer versions of [http://download.gna.org/bmrblib bmrblib]. <br>
The [https://gna.org/projects/bmrblib/ bmrblib] library can be installed on all UNIX systems by typing:
<source lang="bash">
# Change to bash, if in tcsh shell
bash
v=1.0.3
cd $HOME/Downloads
curl http://download.gna.org/bmrblib/bmrblib-1.0.3.tar.gz -o bmrblib-$v.tar.gz
tar -xzf bmrblib-$v.tar.gz
cd bmrblib-$v
# Then either
sudo pip install -e .
# Or
pip install .
cd ..
</source>