Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bilby
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
lscsoft
bilby
Commits
f4b32f4e
There was a problem fetching the pipeline summary.
Commit
f4b32f4e
authored
6 years ago
by
Colm Talbot
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of git.ligo.org:Monash/peyote
parents
6e06b3a2
3d18da74
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+5
-4
5 additions, 4 deletions
.gitlab-ci.yml
README.md
+19
-10
19 additions, 10 deletions
README.md
with
24 additions
and
14 deletions
.gitlab-ci.yml
+
5
−
4
View file @
f4b32f4e
...
...
@@ -21,10 +21,11 @@ exitcode-jessie:
-
pip install -r requirements.txt
-
pip install coverage
-
pip install coverage-badge
-
coverage run test/prior_tests.py
-
coverage run test/tests.py
-
coverage run test/waveform_generator_tests.py
-
coverage run test/noise_realisation_tests.py
-
coverage erase
-
coverage run -a test/prior_tests.py
-
coverage run -a test/tests.py
-
coverage run -a test/waveform_generator_tests.py
-
coverage run -a test/noise_realisation_tests.py
-
coverage html --include=peyote/*
-
coverage-badge -o coverage.svg
artifacts
:
...
...
This diff is collapsed.
Click to expand it.
README.md
+
19
−
10
View file @
f4b32f4e
...
...
@@ -6,25 +6,26 @@ https://monash.docs.ligo.org/peyote/)
Fulfilling all your GW dreams.
## Installation
In the following, we assume you have installed
[
pip
](
https://pip.pypa.io/en/stable/installing/
)
and
[
git
](
https://git-scm.com/
)
.
First, clone the repository, install the requirements, and then install
`Peyote`
.
### Install peyote
Clone the repository, install the requirements, and then install
`peyote`
.
```
bash
$
git clone git@git.ligo.org:Monash/peyote.git
$
cd
peyote/
$
pip
install
-r
requirements.txt
$
python setup.py
install
```
Once you have run these three steps, you have
`Peyote installed`
. However, you
aren't quite yet ready to run anything. First,
`pymultinest`
needs the MultiNest library to be installed to work properly. The
full instructions can be found
[
here
](
https://johannesbuchner.github.io/PyMultiNest/install.html
)
. We have
also written
[
a shortened tl;dr here
](
./TLDR_MULTINEST.md
)
.
Once you have run these steps, you have
`peyote`
installed.
Second, you need
`lalsimulation`
from
`lalsuite`
installed. To do this head
to
[
https://git.ligo.org/lscsoft/lalsuite
](
https://git.ligo.org/lscsoft/lalsuite
)
### Install lalsuite
Many of the
`peyote`
features rely on having a swig-wrapped
`lalsuite`
installation. To install this head to
[
https://git.ligo.org/lscsoft/lalsuite
](
https://git.ligo.org/lscsoft/lalsuite
)
to check you have an account and SSH keys set up. Then,
```
bash
...
...
@@ -36,10 +37,18 @@ $ ./configure --prefix=${HOME}/lalsuite-install --disable-all-lal --enable-swig
$
make
;
make
install
```
**
warning
**
: in the configure line here, we have disabled everything except lalsimulation. If you need other modules, see
`./configure --help`
.
Warning: in the configure line here, we have disabled everything except
lalsimulation. If you need other modules, see
`./configure --help`
.
You could also
`pip install lal, lalsuite`
.
### Install lalsuite (optional)
If you want to use the
`pymultinest`
sampler, you first need the
MultiNest library to be installed to work properly. The full instructions can
be found
[
here
](
https://johannesbuchner.github.io/PyMultiNest/install.html
)
. We
have also written
[
a shortened tl;dr here
](
./TLDR_MULTINEST.md
)
.
## Tests and coverage
To locally test the code
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment