https://github.com/benpastore/TurboID
Raw File
Tip revision: 24fd901d6cb08c2689d08cd4d7c09173a90decb9 authored by benpastore on 13 July 2021, 17:57:31 UTC
Update README.md
Tip revision: 24fd901
iupred_plots_script.R
library(tidyverse)
setwd('C:/Users/Ian/OneDrive - The Ohio State University/work/eggd_data/iupred')
e1iupred<- read_tsv('eggd-1_iupred.txt')
e2iupred<- read_tsv('eggd-2_iupred.txt')


a<- ggplot(e1iupred, aes(x = POS, y = `IUPRED SCORE`)) +
  geom_line() +
  lims( y = c(0,1))

a
a + theme_classic() + geom_hline(yintercept = 0.5) + scale_x_continuous(breaks = seq(0, 556, 100))

b<-ggplot(e2iupred, aes(x = POS, y = `IUPRED SCORE`)) +
  geom_line()+
  ylim(c(0,1)) +
  xlim(c(0,666))
b + theme_classic() + geom_hline(yintercept = 0.5)+ scale_x_continuous(breaks = seq(0, 666, 100))
back to top