https://github.com/marekmosna/pgms
Postgres mass spectromentry extension
https://github.com/marekmosna/pgms
bioinformatics cpp mass-spectrometry plpgsql postgres postgresql sql
Last synced: 3 months ago
JSON representation
Postgres mass spectromentry extension
- Host: GitHub
- URL: https://github.com/marekmosna/pgms
- Owner: marekmosna
- License: gpl-3.0
- Created: 2022-06-16T20:37:46.000Z (almost 4 years ago)
- Default Branch: develop
- Last Pushed: 2023-06-08T17:26:05.000Z (almost 3 years ago)
- Last Synced: 2025-02-10T01:45:22.274Z (about 1 year ago)
- Topics: bioinformatics, cpp, mass-spectrometry, plpgsql, postgres, postgresql, sql
- Language: PLpgSQL
- Homepage:
- Size: 161 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog
- License: COPYING
- Authors: AUTHORS
Awesome Lists containing this project
README
# Postgres Mass Spectrometry Extension

[](https://github.com/marekmosna/pgms/actions)
The extension was developed and tested on Linux Ubuntu 20.04.3 against Postgresql 12.9
## Requirements
On Debian based Linux distributions install following packages
```bash
sudo apt-get install git postgresql build-essential
```
For Debian 11
```bash
sudo apt install postgresql-server-dev-13
```
For Ubuntu 20.04
```bash
sudo apt install postgresql-server-dev-12
```
## Build
```bash
git clone https://github.com/marekmosna/pgms.git
cd pgms
make
```
## Install
```bash
sudo make install
```
## Test
```bash
make installcheck PGUSER=postgres
```