Skip to content

Commit

Permalink
Tagged version v2.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vincent-noel committed Nov 24, 2022
1 parent ed7a055 commit 42cc1e0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ To install it, run

### Package Contents
MaBoSS-env-2.0 is composed of:
- MaBoSS engine 2.5.0: C++ core program simulating continuous/discrete time Markov processes, applied on a Boolean network.
- MaBoSS engine 2.5.1: C++ core program simulating continuous/discrete time Markov processes, applied on a Boolean network.
- MaBoSS tools 2.0: perl and python scripts using MaBoSS engine 2.0
- cMaBoSS: python bindings using Python C API.

Expand Down Expand Up @@ -123,10 +123,10 @@ Finally, it you need the MPI compatible version, you need to have a MPI library
cd engine/pub

./MaBoSS --version
MaBoSS version 2.5.0 [networks up to 64 nodes]
MaBoSS version 2.5.1 [networks up to 64 nodes]

./MaBoSS_100n --version
MaBoSS version 2.5.0 [networks up to 100 nodes]
MaBoSS version 2.5.1 [networks up to 100 nodes]

The usage is described in the [reference card](https://github.com/sysbio-curie/MaBoSS-env-2.0/blob/master/engine/doc/MaBoSS-RefCard.pdf).

Expand Down
2 changes: 1 addition & 1 deletion conda/maboss/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "MaBoSS" %}
{% set version = "2.5.0" %}
{% set version = "2.5.1" %}

package:
name: '{{ name|lower }}'
Expand Down
2 changes: 1 addition & 1 deletion engine/src/MaBEstEngine.cc
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
#include <iomanip>
#include <iostream>

const std::string MaBEstEngine::VERSION = "2.5.0";
const std::string MaBEstEngine::VERSION = "2.5.1";
size_t RandomGenerator::generated_number_count = 0;

MaBEstEngine::MaBEstEngine(Network* network, RunConfig* runconfig) :
Expand Down

0 comments on commit 42cc1e0

Please sign in to comment.