Created
July 14, 2018 13:20
-
-
Save jayhesselberth/6336bcd4ef35b291631c42503cfae752 to your computer and use it in GitHub Desktop.
Xrn1 abundance
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) | |
# How abundant is Xrn1? | |
tab <- readr::read_tsv("https://yeastgfp.yeastgenome.org/allOrfData.txt") | |
all <- tab %>% | |
select(yORF, abundance) %>% | |
mutate(abundance = as.numeric(abundance)) %>% | |
na.omit() | |
all | |
# Histogram of protein abundances in yeast | |
ggplot(all, aes(x = log10(abundance))) + geom_histogram() | |
# Xrn1 is YGL173C | |
all %>% | |
arrange(desc(abundance)) %>% | |
mutate(rank = row_number()) %>% | |
filter(yORF == "YGL173C") | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Created on 2018-07-14 by the reprex package (v0.2.0).