msasim 25.3.0__tar.gz → 25.3.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of msasim might be problematic. Click here for more details.
- {msasim-25.3.0 → msasim-25.3.1}/PKG-INFO +1 -1
- {msasim-25.3.0 → msasim-25.3.1}/msasim/sailfish.py +2 -0
- {msasim-25.3.0 → msasim-25.3.1}/msasim.egg-info/PKG-INFO +1 -1
- {msasim-25.3.0 → msasim-25.3.1}/setup.py +1 -1
- {msasim-25.3.0 → msasim-25.3.1}/LICENSE +0 -0
- {msasim-25.3.0 → msasim-25.3.1}/README.md +0 -0
- {msasim-25.3.0 → msasim-25.3.1}/msasim/__init__.py +0 -0
- {msasim-25.3.0 → msasim-25.3.1}/msasim.egg-info/SOURCES.txt +0 -0
- {msasim-25.3.0 → msasim-25.3.1}/msasim.egg-info/dependency_links.txt +0 -0
- {msasim-25.3.0 → msasim-25.3.1}/msasim.egg-info/not-zip-safe +0 -0
- {msasim-25.3.0 → msasim-25.3.1}/msasim.egg-info/requires.txt +0 -0
- {msasim-25.3.0 → msasim-25.3.1}/msasim.egg-info/top_level.txt +0 -0
- {msasim-25.3.0 → msasim-25.3.1}/pyproject.toml +0 -0
- {msasim-25.3.0 → msasim-25.3.1}/setup.cfg +0 -0
- {msasim-25.3.0 → msasim-25.3.1}/src/main.cpp +0 -0
- {msasim-25.3.0 → msasim-25.3.1}/src/modelFactory.cpp +0 -0
- {msasim-25.3.0 → msasim-25.3.1}/src/rateMatrixSim.cpp +0 -0
|
@@ -410,6 +410,8 @@ class Simulator:
|
|
|
410
410
|
simProtocol.set_insertion_rates(0.05)
|
|
411
411
|
simProtocol.set_deletion_rates(0.05)
|
|
412
412
|
simProtocol.set_sequence_size(100)
|
|
413
|
+
simProtocol.set_min_sequence_size(1)
|
|
414
|
+
|
|
413
415
|
# verify sim_protocol
|
|
414
416
|
if self._verify_sim_protocol(simProtocol):
|
|
415
417
|
self._simProtocol = simProtocol
|
|
@@ -9,7 +9,7 @@ from datetime import datetime
|
|
|
9
9
|
now = datetime.now()
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
__version__ = f"{now.year % 100}.{now.month+1}.
|
|
12
|
+
__version__ = f"{now.year % 100}.{now.month+1}.1"
|
|
13
13
|
|
|
14
14
|
# The main interface is through Pybind11Extension.
|
|
15
15
|
# * You can add cxx_std=11/14/17, and then build_ext can be removed.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|