Last active
April 9, 2018 20:08
-
-
Save kieranrcampbell/b804fb3437651266954811c0ee336513 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Nice colour palette for visualising copy number profiles | |
# inspired by DLP paper | |
cnv_cols <- c("0" = "#deebf7", | |
"1" = "#9ecae1", | |
"2" = "grey80", | |
"3" = "#fdae6b", | |
"4" = "#e6550d") | |
# Factors for chromosomes | |
chr_levels <- c(as.character(1:23), "X", "Y") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment