Go to file
Kevin Dunseath 50a0bb7632 Replaced STOP by RETURN before error print statements in src/msspec/spec/fortran/eig/mi/do_main.f
In src/msspec/spec/fortran/eig/common/, modified eig_mat_ms.f to call subroutines in new
files diagonalize_matrix.f and renormalization.f to implement renormalization in the
eigenvalue "spectroscopy"
2019-12-11 15:12:58 +01:00
CI Work on install script 2019-11-21 17:09:19 +01:00
doc Add test coverage report in documentation 2019-11-29 17:38:41 +01:00
src Replaced STOP by RETURN before error print statements in src/msspec/spec/fortran/eig/mi/do_main.f 2019-12-11 15:12:58 +01:00
utils Work on continuous integration 2019-11-20 18:14:00 +01:00
.gitattributes Add .gitattributes 2019-11-15 16:53:41 +01:00
.gitignore Work on install script 2019-11-21 17:09:19 +01:00
Jenkinsfile Fix bug in Jenkinsfile 2019-12-06 13:49:28 +01:00
Makefile Fix bug in install process. 2019-12-06 13:26:22 +01:00
README.md Fix bug in install process. 2019-12-06 13:26:22 +01:00
license.txt iUpdate the license info 2019-11-15 16:24:12 +01:00
requirements.txt Fix bug in install process. 2019-12-06 13:26:22 +01:00

README.md

Introduction

This is the Python MsSpec version with support for Python 3.x and dynamic memory allocation for Phagen and Spec

To work with the git repository

It is higly recommended to work in a Python virtual environment. To create one, you can use:

virtualenv --python=python3 msspec_venv

or

virtualenv --python=python3 --system-site-packages msspec_venv

to activate the virtual environment (if you are in the folder where you created "msspec_venv"):

source ./msspec_venv/bin/activate

To get the python package dependencies, you can install the requirements with the provided requirements.txt file.

pip install --upgrade -r requirements.txt

You also need to export the path to the msspec package in the PYTHONPATH variable (replace the whereisthegitrepo part of the string with the actual absolute path of your repo.

export PYTHONPATH=/whereisthegitrepo/src:$PYTHONPATH

Finally you need to compile the fortran libs:

make pybinding

That's all. All you need to do each time you want to work with msspec is:

  • To activate the virtual environment
  • Export the path to msspec package in the PYTHONPATH variable

To create a self-extracible archive

If you want to create a setup program to install msspec:

At the root of the repo, type in

make selfex

This will compile the code and create the results of unit tests, then it will create a self-extractible archive in the package folder

To install the *.setup file

Just execute the file with a shell

sh ./MsSpec-###.setup

Replace ### with the version number.

To automatically accept the defaults you could type in

sh ./MsSpec-###.setup --accept -- -y

and to make the install process verbose:

sh ./MsSpec-###.setup -- -d