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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: msasim
3
- Version: 25.5.3
3
+ Version: 25.9.3
4
4
  Summary: A fast MSA simulator
5
5
  Home-page: https://github.com/elyawy/Sailfish-backend
6
6
  Author: Elya Wygoda
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: msasim
3
- Version: 25.5.3
3
+ Version: 25.9.3
4
4
  Summary: A fast MSA simulator
5
5
  Home-page: https://github.com/elyawy/Sailfish-backend
6
6
  Author: Elya Wygoda
@@ -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
- if (!_subManager.isEmpty(currentNode->id())) {
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
- if (distToFather > 0.5) {
147
- mutateEntireSeq(currentNode, seqLength);
148
- } else {
149
- mutateSeqGillespie(currentNode, seqLength, distToFather);
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