You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/arcade/potts/agent/module/PottsModuleFlyStemProliferation.java
+10-3Lines changed: 10 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -48,10 +48,16 @@ public class PottsModuleFlyStemProliferation extends PottsModuleProliferationVol
48
48
/** Rate of Deadpan change (ticks^-1). */
49
49
finaldoubledeadpanRate;
50
50
51
-
/** Percent threshold of apical voxels considered when dividing Deadpan at cell division. The sum of apicalThreshold and basalThreshold should not exceed 1. */
51
+
/**
52
+
* Percent threshold of apical voxels considered when dividing Deadpan at cell division. The sum
53
+
* of apicalThreshold and basalThreshold should not exceed 1.
54
+
*/
52
55
finaldoubleapicalThreshold;
53
56
54
-
/** Percent threshold of basal voxels considered when dividing Prospero at cell division. The sum of apicalThreshold and basalThreshold should not exceed 1. */
57
+
/**
58
+
* Percent threshold of basal voxels considered when dividing Prospero at cell division. The sum
59
+
* of apicalThreshold and basalThreshold should not exceed 1.
60
+
*/
55
61
finaldoublebasalThreshold;
56
62
57
63
/** Threshold ratio of Prospero to Deadpan in daughter cell to determine cell identity. */
@@ -163,7 +169,8 @@ public PottsModuleFlyStemProliferation(PottsCellFlyStem cell) {
thrownewInvalidParameterException("Apical and basal thresholds should be nonnegative and not overlap (check that apicalThreshold + basalThreshold <= 1)");
172
+
thrownewInvalidParameterException(
173
+
"Apical and basal thresholds should be nonnegative and not overlap (check that apicalThreshold + basalThreshold <= 1)");
0 commit comments