-
Install
Xquartz
to get X11 support on MacOS. You can googleXquartz
and download it from its official site, or install using HomeBrew.brew cask install xquartz
-
Launch
Xquartz
. Go toPreference
->Security
, click the boxAllow connections from clients
. NOTE: You have to lauchXquartz
withAllow connections from clients
enable everytime you want tossh
to remote server with X11 forwarding support.
This file contains hidden or 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
library(tidyverse) | |
library(e1071) | |
library(gganimate) | |
# take a vector of inputs and return a binary | |
# matrix corresponding to the character | |
read_letter <- function(...) { | |
cbind( | |
matrix(data = c(...), nrow = 9, ncol = 5, byrow = TRUE), | |
matrix(data = rep(0,9), nrow = 9, ncol = 1) |
This file contains hidden or 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
#' Generate a bibliography of packages | |
#' | |
#' This function creates an output bibliography from an input character vector | |
#' of package names. The primary use case for this function is when working | |
#' with other authors and you need to provide a reference list of packages used. | |
#' | |
#' @param pkgs A character vector of packages | |
#' @param csl A csl file used to format the output bibliography. Good place to | |
#' look for these is \url{https://github.com/citation-style-language/styles} | |
#' @param append_bib Existing \code{.bib} file to append package citations to. |
This file contains hidden or 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
# Mine tweets from a meeting using the meeting hashtag. | |
# | |
# Looks for URLs in tweets that match: | |
# - github | |
# - github pages (docs) | |
# - bitbucket | |
# - CRAN | |
# - BitBucket | |
# | |
# Results in a tidy data.frame that can be further manipulated |
This file contains hidden or 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
url | name | user | type | |
---|---|---|---|---|
https://github.com/dewyman/TranscriptClean | TranscriptClean | dewyman | github | |
https://github.com/dewyman/TALON | TALON | dewyman | github | |
https://github.com/Illumina/strelka | strelka | Illumina | github | |
https://github.com/gymreklab/GangSTR | GangSTR | gymreklab | github | |
https://github.com/dewyman/talon | talon | dewyman | github | |
https://github.com/haghshenas/PhISCS | PhISCS | haghshenas | github | |
https://github.com/alshai/r-index | r-index | alshai | github | |
https://github.com/shenwei356/bwt | bwt | shenwei356 | github | |
https://github.com/gymreklab/gangstr | gangstr | gymreklab | github |