Skip to content

Commit

Permalink
added new colors
Browse files Browse the repository at this point in the history
  • Loading branch information
aloriot committed Oct 3, 2024
1 parent d62ad4d commit 3e5e4ab
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion R/utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -402,11 +402,18 @@ Petropoulos_colors <- c("Morula E3" = "lightblue1",
"Blastocyst E6" = "dodgerblue4",
"Blastocyst E7" = "navy")

genotype_colors <- c("XX" = "pink", "XY"= "blue", "NA" = "gray")
genotype_colors <- c("XX" = "pink", "XY"= "blue", "NA" = "gray",
"X" = "pink4", "Y" = "blue4", "XXX"= "deeppink", "NA" = "gray")

fetal_time_colors <- colorRamp2(
seq(6, 21, length = 6),
c( "cyan", "cyan3", "dodgerblue", "dodgerblue3", "mediumpurple", "magenta4" ))

fetal_type_colors <- c("FGC" = "lightgreen", "Soma" = "gray")

embryo_stage_col <- c("GV Oocyte" = "mediumvioletred", "MII Oocyte" = "brown4",
"Sperm" = "palegreen2", "Zygote" = "lightgoldenrod1",
"2-cell" = "ivory2", "4-cell" = "lightslateblue",
"8-cell" = "plum2", "Morula" = "deepskyblue",
"Blastocyst" = "sienna1", "Post-implantation" = "peachpuff")

0 comments on commit 3e5e4ab

Please sign in to comment.