Skip to content

Commit 79c19b9

Browse files
Update buildPlotConfig.R
1 parent 3f68f67 commit 79c19b9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

R/buildPlotConfig.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@ buildPlotConfig <- function(default_config,
6363
} else if (pedigree_size <= 50) {
6464
built_config$point_size <- built_config$point_size
6565
} else if (pedigree_size <= 100) {
66-
built_config$point_size <- max(built_config$point_size / sqrt(pedigree_size), 0.5)
66+
built_config$point_size <- max(built_config$point_size / sqrt(pedigree_size), 0.75)
6767
} else if (pedigree_size <= 500) {
68-
built_config$point_size <- max(built_config$point_size / sqrt(pedigree_size) * 1.5, 0.5)
68+
built_config$point_size <- max(built_config$point_size / sqrt(pedigree_size) * 1.5, 0.75)
6969
} else {
70-
built_config$point_size <- max(built_config$point_size / sqrt(pedigree_size) * 2.5, 0.5)
70+
built_config$point_size <- max(built_config$point_size / sqrt(pedigree_size) * 2.5, 0.75)
7171
}
7272
}
7373
if (built_config$segment_scale_by_pedigree == TRUE) {

0 commit comments

Comments
 (0)