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
> x <- data.frame(seqnames="chr1", start=c(1,101), width=100, foo=c("bar","boo")) |> as_granges() | |
> x | |
GRanges object with 2 ranges and 1 metadata column: | |
seqnames ranges strand | foo | |
<Rle> <IRanges> <Rle> | <character> | |
[1] chr1 1-100 * | bar | |
[2] chr1 101-200 * | boo | |
------- | |
seqinfo: 1 sequence from an unspecified genome; no seqlengths | |
> x |> tile_ranges(25) |
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
# Created by chat GPT | |
# Load necessary libraries | |
library(splines) | |
library(GPfit) | |
# Set seed for reproducibility | |
set.seed(123) | |
# Generate non-uniform data |
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
load_all("../biocmask") | |
suppressPackageStartupMessages(library(airway)) | |
data(airway) | |
rowData(airway)$group <- sort(rep(1:10, length=nrow(airway))) | |
library(tibble) | |
suppressPackageStartupMessages(library(dplyr)) | |
suppressPackageStartupMessages(library(purrr)) | |
airway |> |
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(jsonlite) | |
library(readr) | |
dat <- read_csv("IGVF MPRA FG designed sequence metadata - Sheet1.csv") | |
dat$constraints <- as.list(dat$constraints) | |
dat$constraints[[1]] <- list(required=TRUE) | |
dat$constraints[[2]] <- list(required=TRUE) | |
dat$constraints[[3]] <- list( | |
required=TRUE, | |
enum=strsplit(sub(".*enum: \\[(.*)\\]","\\1",dat$constraints[[3]]),", ")[[1]] | |
) |
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: "Differential chromatin accessibility and gene expression" | |
format: html | |
--- | |
# Differential expression from RNA-seq | |
```{r} | |
#| eval: FALSE | |
dir <- system.file("extdata", package="macrophage") |
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
chr1 | 248956422 | |
---|---|---|
chr2 | 242193529 | |
chr3 | 198295559 | |
chr4 | 190214555 | |
chr5 | 181538259 | |
chr6 | 170805979 | |
chr7 | 159345973 | |
chr8 | 145138636 | |
chr9 | 138394717 | |
chr10 | 133797422 |
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(plyranges) | |
library(nullranges) | |
x <- data.frame( | |
seqnames=rep(c("1","2","3"), each=10), | |
start=rep(c(0:4, 10:14) * 1000 + 1, times=3), | |
width=100) |> | |
as_granges() | |
seqlengths(x) <- c("1"=20123, "2"=20123, "3"=20123) |
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(SummarizedExperiment) | |
library(plyranges) | |
# example data | |
m <- matrix(rnorm(600), nrow=100) | |
r1 <- data.frame(seqnames=1, start=1:50 * 100 + 2501, | |
width=5, id1=paste0("u",formatC(1:50,width=3,flag="0"))) |> | |
as_granges() | |
r2 <- data.frame(seqnames=1, start=1:100 * 100 + 1, | |
width=5, id2=paste0("v",formatC(1:100,width=3,flag="0"))) |> |
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(shiny) | |
library(UpSetR) | |
library(dplyr) | |
library(tidyr) | |
library(readr) | |
library(ggplot2) | |
library(pheatmap) | |
dat <- read_delim("ancestry_dataframe.tsv") | |
ui <- fluidPage( |
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
mat <- matrix(rnbinom(2e5, mu=100, size=1/.01), ncol=100) | |
library(DESeq2) | |
d <- DESeqDataSetFromMatrix(mat, DataFrame(x=rep(1,100)), ~1) | |
# library size correction, centered log ratio to reference sample | |
d <- estimateSizeFactors(d) | |
# variance | |
d <- estimateDispersionsGeneEst(d) | |
# trend |
NewerOlder