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 | |
# | |
# my_ffcast takes the same options as ffcast | |
# -s: part of screen | |
# -w: window | |
# ... | |
if [ -z $1 ] | |
then | |
option=-s | |
else |
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
{ | |
"__MyLocaleLanguage__": "Polski", | |
"__maintaner__": "http://github.com/yakyak", | |
"title": "YakYak - Komunikator dla Hangouts", | |
"description": "Komunikator dla Google Hangouts", | |
"settings": "Preferencje", | |
"recent": "Ostatnie", | |
"details": "Szczegóły", |
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
library(tidyverse) | |
library(STRINGdb) | |
STRINGdb::get_STRING_species(version = version, species_name=NULL) %>% | |
dplyr::arrange(official_name) %>% | |
dplyr::filter(official_name == 'homo_sapiens') | |
# downloading Homo sapiens | |
string_db <- STRINGdb::STRINGdb$new(version = version, | |
species = 9606, |
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
--- | |
title: "Untitled" | |
output: | |
BiocStyle::html_document: | |
dev: "svg" | |
--- | |
## Failing plots | |
```{r} |
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
#' @examples | |
#' renv::install("isocountry") | |
#' renv::install("readr") | |
#' renv::install("dplyr") | |
#' renv::install("forcats") | |
#' renv::install("rlang") | |
#' renv::install("glue") | |
#' renv::install("readr") | |
#' renv::install("clauswilke/ggtextures") |
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
library(teal.data) | |
join_keys <- join_keys() # add custom here | |
# Sanity check on join_keys vs. teal.data::default_cdisc_join_keys ------------- | |
jk2 <- default_cdisc_join_keys[names(join_keys)] | |
issues_in_join_keys <- unlist( | |
lapply( | |
setdiff(names(join_keys), "ADSL"), |