Skip to content

Commit 2a6f41a

Browse files
authored
Merge pull request #4 from computational-metabolomics/dev_databases
Add and merge developments
2 parents f47d5cf + a26e41d commit 2a6f41a

File tree

70 files changed

+1828
-441
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+1828
-441
lines changed

.travis.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1+
dist: xenial
12
language: python
23
python:
3-
- "2.7"
4-
- "3.6"
4+
- "3.7"
5+
6+
services:
7+
- xvfb
58

69
install:
710
- pip install coverage
@@ -10,8 +13,6 @@ install:
1013

1114
before_script:
1215
- "export DISPLAY=:99.0"
13-
- "sh -e /etc/init.d/xvfb start"
14-
- sleep 3 # give xvfb some time to start
1516

1617
script:
1718
- beams --help

MANIFEST.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ include tests/*.py
66
include tests/test_data/*.*
77
include tests/test_results/.gitignore
88
include beams/data/*.txt
9-
include beams/data/databases/*.sql.gz
9+
include beams/data/databases/*.sql.gz
10+
include beams/data/databases/databases.txt

README.rst

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,39 @@
11
BEAMS - Birmingham mEtabolite Annotation for Mass SpectroMetry
2-
===============================================================
3-
|Version| |Py versions| |Git| |Bioconda| |Build Status (Travis)| |Build Status (AppVeyor)| |License| |RTD doc| |codecov|
2+
================================================================
3+
|Version| |Py versions| |Git| |Bioconda| |Build Status (Travis)| |Build Status (AppVeyor)| |License| |RTD doc| |codecov| |mybinder|
44

5-
BEAMS is a Python Package **(Beta version)** to annotate LC-MS and DIMS data. **Stable release coming soon.**
5+
BEAMS is a Python Package to annotate LC-MS and DIMS data.
66

7-
- Documentation (Available soon)
7+
- |documentation|
88
- |source|
99
- |bug reports|
1010

1111
Installation
12-
--------
12+
------------------------
1313

1414
Conda_
1515
~~~~~~~
1616

1717
1. Install |miniconda|. Follow the steps described |conda_install|.
1818
2. Run the following commands to install BEAMS.
1919

20-
Windows-64
20+
Windows-64, Linux-64 and OSx
2121

2222
::
2323

24-
$ conda create -n beams python=2.7 -y --name beams python=2.7 numpy scipy networkx requests pandas -c conda-forge
24+
$ conda create -n beams beams -c conda-forge -c bioconda -c computational-metabolomics
2525
$ activate beams
26-
$ pip install git+https://github.com/computational-metabolomics/beams.git@dev
2726

2827
Linux-64 and OSx
2928

3029
::
3130

32-
$ conda create -n beams python=2.7 -y --name beams python=2.7 numpy scipy networkx requests pandas pyqt -c conda-forge
31+
$ conda create -n beams beams -c conda-forge -c bioconda -c computational-metabolomics
3332
$ source activate beams
34-
$ pip install git+https://github.com/computational-metabolomics/beams.git@dev
33+
3534

3635
Usage
37-
------
36+
------------------------
3837

3938
Command line
4039
~~~~~~~~~~~~~
@@ -51,14 +50,14 @@ GUI
5150
$ beams start-gui
5251

5352
Bugs
54-
----
53+
------------------------
5554

5655
Please report any bugs that you find `here <https://github.com/computational-metabolomics/beams/issues>`_.
5756
Or fork the repository on `GitHub <https://github.com/computational-metabolomics/beams/>`_
5857
and create a pull request (PR). We welcome all contributions, and we will help you to make the PR if you are new to `git <https://guides.github.com/activities/hello-world/>`_.
5958

6059
License
61-
-------
60+
------------------------
6261

6362
Released under the GNU General Public License v3.0 (see `LICENSE file <https://github.com/computational-metabolomics/beams/LICENSE>`_)
6463

@@ -80,9 +79,6 @@ Released under the GNU General Public License v3.0 (see `LICENSE file <https://g
8079
.. |Bioconda| image:: https://img.shields.io/badge/install%20with-bioconda-brightgreen.svg?style=flat&maxAge=3600
8180
:target: http://bioconda.github.io/recipes/beams/README.html
8281

83-
.. |Bioconda| image:: https://img.shields.io/badge/install%20with-bioconda-brightgreen.svg?style=flat&maxAge=3600
84-
:target: http://bioconda.github.io/recipes/beams/README.html
85-
8682
.. |License| image:: https://img.shields.io/pypi/l/beams.svg?style=flat&maxAge=3600
8783
:target: https://www.gnu.org/licenses/gpl-3.0.html
8884

@@ -92,9 +88,12 @@ Released under the GNU General Public License v3.0 (see `LICENSE file <https://g
9288
.. |codecov| image:: https://codecov.io/gh/computational-metabolomics/beams/branch/master/graph/badge.svg
9389
:target: https://codecov.io/gh/computational-metabolomics/beams
9490

91+
.. |mybinder| image:: https://mybinder.org/badge_logo.svg
92+
:target: https://mybinder.org/v2/gh/computational-metabolomics/beams/master?filepath=notebooks
93+
9594
.. |documentation| raw:: html
9695

97-
<a href="https://computational-metabolomics.github.io/beams" target="_blank">Documentation</a>
96+
<a href="http://beams.readthedocs.io/en/latest/beams/index.html" target="_blank">Documentation</a>
9897

9998
.. |source| raw:: html
10099

appveyor.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
environment:
22
matrix:
3-
- PYTHON: "C:\\Python27"
4-
- PYTHON: "C:\\Python36"
3+
- PYTHON: "C:\\Python37"
54

65
build_script:
76
- '%PYTHON%\python.exe -m pip install .'

0 commit comments

Comments
 (0)