https://github.com/emsanford/combined_responses_paper
Revision 6d8d1e6f9e3e660f8acd4e748b5a80b3bb6c6d7c authored by emsanford on 03 January 2021, 23:20:22 UTC, committed by GitHub on 03 January 2021, 23:20:22 UTC
1 parent e25f3d9
Raw File
Tip revision: 6d8d1e6f9e3e660f8acd4e748b5a80b3bb6c6d7c authored by emsanford on 03 January 2021, 23:20:22 UTC
Update README.md
Tip revision: 6d8d1e6
printCvalsForBeeswarmPlotGenes.R
deseqTibAnno <- read_tsv(here('extractedData', 'DeSeqOutputAllConds.annotated.tsv'))

deseqTibAnno %>% 
  filter(gene_name == 'MAP3K1') %>%
  dplyr::select(matches("integrationConstant"))

deseqTibAnno %>% 
  filter(gene_name == 'GPRC5A') %>%
  dplyr::select(matches("integrationConstant"))

deseqTibAnno %>% 
  filter(gene_name == 'EPHB2') %>%
  dplyr::select(matches("integrationConstant"))

deseqTibAnno %>% 
  filter(gene_name == 'RIPK4') %>%
  dplyr::select(matches("integrationConstant"))

deseqTibAnno %>% 
  filter(gene_name == 'ZNF469') %>%
  dplyr::select(matches("integrationConstant"))
back to top