d3b-center / annoFuse

Filter and prioritize fusion calls
Other
20 stars 3 forks source link

Read expression file #103

Closed km-2021 closed 9 months ago

km-2021 commented 1 year ago

What data file(s) does this issue pertain to?

What version are you using?

Put your question or report your issue here.

Is the following code correct for loading the Expression file?

expressionFile <- ("expressionfilename.gz")

jharenza commented 1 year ago

expressionFile <- ("expressionfilename.gz")

Depending on the format of your file, and the libraries you have installed you would read in the file various ways:

using tidyverse and a tsv:

expressionFile <- read_tsv("expressionfilename.tsv.gz")

using base R reading in an RDS file:

expressionFile <- readRDS("expressionfilename.RDS.gz")

using base R reading in an RData file:

load("expressionfilename.RDA.gz", verbose = TRUE)