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
cs_prop_tab <- function(csid){ | |
require(dplyr) | |
require(webchem) | |
require(rcdk) | |
cs_prop <- cs_prop(csid, verbose=TRUE) | |
if(is.na(cs_prop)){ | |
return(bind_cols(cs_acd_tab = tibble(), |
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
## Putting plots together ################## | |
# extract gtable | |
g1 <- ggplot_gtable(ggplot_build(p1)) | |
g2 <- ggplot_gtable(ggplot_build(p2)) | |
# overlap the panel of 2nd plot on that of 1st plot | |
pp <- c(subset(g1$layout, grepl("panel",name) , se = t:r)) | |
g <- gtable_add_grob(g1, g2$grobs[grep("panel",g2$layout$name)], pp$t, | |
pp$l, pp$b, pp$l) |
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
#!/bin/bash | |
# A simple script to backup an organization's GitHub repositories. | |
GHBU_BACKUP_DIR=${GHBU_BACKUP_DIR-"github-backups"} # where to place the backup files | |
GHBU_ORG=${GHBU_ORG-"<CHANGE-ME>"} # the GitHub organization whose repos will be backed up | |
# (if you're backing up a user's repos instead, this should be your GitHub username) | |
GHBU_UNAME=${GHBU_UNAME-"<CHANGE-ME>"} # the username of a GitHub account (to use with the GitHub API) | |
GHBU_PASSWD=${GHBU_PASSWD-"<CHANGE-ME>"} # the password for that account | |
GHBU_GITHOST=${GHBU_GITHOST-"github.com"} # the GitHub hostname (see comments) | |
GHBU_PRUNE_OLD=${GHBU_PRUNE_OLD-true} # when `true`, old backups will be deleted |