Skip to content

Instantly share code, notes, and snippets.

View federicomarini's full-sized avatar

Federico Marini federicomarini

View GitHub Profile
@federicomarini
federicomarini / keybase.md
Created June 12, 2018 11:25
gist for keybase

Keybase proof

I hereby claim:

  • I am federicomarini on github.
  • I am federicomarini (https://keybase.io/federicomarini) on keybase.
  • I have a public key ASD6JAfpjhUeBpXdKkLJc5N39D7GI7SJ8Dx8VZZMgvwLDAo

To claim this, I am signing this object:

@federicomarini
federicomarini / iSEE_plug.R
Last active April 20, 2023 09:54
A function to wrap up the DESeq2 inputs&outputs, and plug that as SingleCellExperiment into iSEE
library(DESeq2)
wrapup_for_iSEE <- function(dds, res) {
# dds to vst
vst <- vst(dds)
# initialize the container
se <- SummarizedExperiment(
assays = List(
counts = counts(dds),