Skip to content

Instantly share code, notes, and snippets.

View tomsing1's full-sized avatar

Thomas Sandmann tomsing1

View GitHub Profile
@tomsing1
tomsing1 / ena_controlled_vocabulary.Rmd
Created April 3, 2023 22:18
Rmd file that retrieves and parses ENA's XML specification for NGS experiments
---
title: "Controlled vocabulary for sequencing experiments"
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
```
@tomsing1
tomsing1 / json_in_sqlite.qmd
Created December 31, 2022 22:50
Experimenting with JSON fields in a SQLite database
---
title: "Experimenting with SQLite"
editor_options:
chunk_output_type: inline
---
```{r}
library(glue)
library(RSQLite)
library(jsonlite)
@tomsing1
tomsing1 / GO.R
Created December 28, 2022 04:27
Retrieving Gene ontology (GO) annotations using Bioconductor annotation packages
library(AnnotationDbi)
library(org.Hs.eg.db)
library(GO.db)
kTerm <- "GO:0007265"
# retrieve all genes annotated with the GO germ
df <- AnnotationDbi::select(org.Hs.eg.db, keys = c(kTerm),
columns = c("ENTREZID", "ENSEMBL"),
keytype = "GO")
nrow(df) # 117 (some duplicate EntrezIds because we requested Ensembl ids, too)
@tomsing1
tomsing1 / plotly-nflfastR.Rmd
Last active December 17, 2022 20:50
Updated version of Tom Mock's plotly-nflfastR.R gist
---
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
library(crosstalk)
library(gsisdecoder) # for nflfastR::build_nflfastR_pbp
library(htmltools)
library(nflfastR)
@tomsing1
tomsing1 / ploty_dt_crosstalk.Rmd
Last active December 15, 2022 17:46
Combining a plotly graph and an interactive table with crosstalk in R
---
title: "DT, plotly and crosstalk"
---
```{r}
library(plotly)
library(DT)
library(crosstalk)
library(htmltools)
```
@tomsing1
tomsing1 / sparrow_reactable.Rmd
Last active December 21, 2022 02:13
Nested reactable table to display the results of a gene set enrichment analysis with the sparrow Bioconductor package
---
title: "Presenting gene set enrichment results with reactable and plotly"
format:
html:
page-layout: full
code-fold: true
code-summary: "Show the code"
---
```{r}
@tomsing1
tomsing1 / piping_into_wget.sh
Last active September 2, 2022 21:37
A bash script that pipes a text file with filenames into wget to download them one by one
#!/usr/bin/env bash
# This script reads filenames from the FILENAMES text file, prepends each with the URL
# and then uses wget to download them one by one.
set -x # print the commands as they are executed
set -e # exit on error
set -o nounset # no unset variables
set -o pipefail # if a step in a pipe fails, the whole pipe fails immediately
@tomsing1
tomsing1 / s3_permissions.R
Last active August 31, 2022 17:07
Using the paws R package to simulate / check get, put and delete actions on AWS S3
#' Retrieve temporary AWS authentication key, secret key and token
#'
#' Saturn Cloud instances use web authentication to obtain temporary
#' access to AWS resources, e.g. S3 buckets, instead of environmental variables.
#' But there are situations where the typical `AWS_ACCESS_KEY_ID`,
#' `AWS_SECRET_ACCESS_KEY` and `AWS_SESSION_TOKEN` environmental variables are
#' needed, e.g. to authenticate with tools that don't support web
#' authentication such as the `aws.s3` and `paws` R packages. This function
#' retrieves the temporary variables (but does not export them as environmental
#' variables).
@tomsing1
tomsing1 / rentrez_geo_biosample.R
Created June 3, 2022 00:50
Querying NCBI GEO and Biosample databases from R using the rentrez package
library(glue)
library(purrr)
library(rentrez)
library(snakecase)
library(tidyr)
library(xml2)
rentrez::entrez_dbs() # for reference: available databases
# query NCBI GEO for information about Series GSE178265
@tomsing1
tomsing1 / rootograms.R
Created June 1, 2022 02:02
R script demonstrating how to plot rootograms in R
library(vcd)
library(patchwork)
set.seed(123)
# we make 4 independent draws from a poisson
# distribution, fit the poisson distribution
# and then draw the rootogram to compare observed
# and fitted values.
plots <- lapply(1:4, function(draw) {