msasim 25.5.3__tar.gz → 25.9.3__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.
- {msasim-25.5.3/msasim.egg-info → msasim-25.9.3}/PKG-INFO +1 -1
- {msasim-25.5.3 → msasim-25.9.3/msasim.egg-info}/PKG-INFO +1 -1
- {msasim-25.5.3 → msasim-25.9.3}/src/rateMatrixSim.cpp +9 -8
- {msasim-25.5.3 → msasim-25.9.3}/LICENSE +0 -0
- {msasim-25.5.3 → msasim-25.9.3}/README.md +0 -0
- {msasim-25.5.3 → msasim-25.9.3}/_Sailfish/__init__.pyi +0 -0
- {msasim-25.5.3 → msasim-25.9.3}/_Sailfish/py.typed +0 -0
- {msasim-25.5.3 → msasim-25.9.3}/msasim/__init__.py +0 -0
- {msasim-25.5.3 → msasim-25.9.3}/msasim/sailfish.py +0 -0
- {msasim-25.5.3 → msasim-25.9.3}/msasim.egg-info/SOURCES.txt +0 -0
- {msasim-25.5.3 → msasim-25.9.3}/msasim.egg-info/dependency_links.txt +0 -0
- {msasim-25.5.3 → msasim-25.9.3}/msasim.egg-info/not-zip-safe +0 -0
- {msasim-25.5.3 → msasim-25.9.3}/msasim.egg-info/requires.txt +0 -0
- {msasim-25.5.3 → msasim-25.9.3}/msasim.egg-info/top_level.txt +0 -0
- {msasim-25.5.3 → msasim-25.9.3}/pyproject.toml +0 -0
- {msasim-25.5.3 → msasim-25.9.3}/setup.cfg +0 -0
- {msasim-25.5.3 → msasim-25.9.3}/setup.py +0 -0
- {msasim-25.5.3 → msasim-25.9.3}/src/main.cpp +0 -0
- {msasim-25.5.3 → msasim-25.9.3}/src/modelFactory.cpp +0 -0
|
@@ -134,20 +134,21 @@ void rateMatrixSim::mutateSeqRecuresively(tree::nodeP currentNode, int seqLength
|
|
|
134
134
|
mutateSeqAlongBranch(node, seqLength);
|
|
135
135
|
if ((*_nodesToSave)[node->id()]) saveSequence(node->id(), node->name());
|
|
136
136
|
mutateSeqRecuresively(node, seqLength);
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
_subManager.undoSubs(currentNode->id(), _rootSequence, _rateCategories, _sp.get());
|
|
137
|
+
if (!_subManager.isEmpty(node->id())) {
|
|
138
|
+
_subManager.undoSubs(node->id(), _rootSequence, _rateCategories, _sp.get());
|
|
140
139
|
}
|
|
141
140
|
}
|
|
142
141
|
}
|
|
143
142
|
|
|
144
143
|
void rateMatrixSim::mutateSeqAlongBranch(tree::nodeP currentNode, int seqLength) {
|
|
145
144
|
const MDOUBLE distToFather = currentNode->dis2father();
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
}
|
|
145
|
+
mutateEntireSeq(currentNode, seqLength);
|
|
146
|
+
|
|
147
|
+
// if (distToFather > 0.5) {
|
|
148
|
+
// mutateEntireSeq(currentNode, seqLength);
|
|
149
|
+
// } else {
|
|
150
|
+
// mutateSeqGillespie(currentNode, seqLength, distToFather);
|
|
151
|
+
// }
|
|
151
152
|
// testSumOfRates();
|
|
152
153
|
}
|
|
153
154
|
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|