Skip to content

Commit

Permalink
update read.delim2 to read_tsv
Browse files Browse the repository at this point in the history
for annot file, update read.delim2 to read_tsv since [AlexsLemonade#836](AlexsLemonade#836) has gone in
  • Loading branch information
jharenza committed Nov 9, 2020
1 parent 7bf382c commit 7df165c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion analyses/fusion-summary/01-fusion-summary.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ dataDir <- file.path("..", "..", "data")
fusDir <- file.path("..", "..", "analyses", "fusion_filtering", "results")
annotDir <- file.path("..", "..", "analyses", "fusion_filtering", "references")
#' Annotation file to be used for identifying kinase genes
annot <- read.delim2(file.path(annotDir, "genelistreference.txt"), sep = "\t", header = TRUE, stringsAsFactors = FALSE)
annot <- read_tsv(file.path(annotDir, "genelistreference.txt"))
#' The putative oncogenic fusion file is what we'll use to check for the #' presence or absence of the fusions.
putativeOncogenicDF <-
read_tsv(file.path(fusDir, "pbta-fusion-putative-oncogenic.tsv"))
Expand Down
Loading

0 comments on commit 7df165c

Please sign in to comment.