Skip to content

Commit

Permalink
Fix wrong debug messages in case crop criterion number of cells is se…
Browse files Browse the repository at this point in the history
…lected
  • Loading branch information
stefanhahmann authored Sep 13, 2023
1 parent 43a0797 commit 73b223b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ public void setInputParams( CropCriteria cropCriterion, int cropStart, int cropE
this.cropStart = LineageTreeUtils.getFirstTimepointWithNSpots( model, cropStart );
this.cropEnd = LineageTreeUtils.getFirstTimepointWithNSpots( model, cropEnd );
}
logger.debug( "Crop criterion {}, start timepoint: {}, crop end timepoint: {}", cropCriterion, cropStart, cropEnd );
logger.debug( "Crop criterion {}, start timepoint: {}, crop end timepoint: {}", cropCriterion, this.cropStart, this.cropEnd );
}

public void setComputeParams( SimilarityMeasure similarityMeasure, ClusteringMethod clusteringMethod, int numberOfClasses )
Expand Down

0 comments on commit 73b223b

Please sign in to comment.