Hi,
I am trying to import RSEM output files into tximport. Using this code
sTPM_hsa <- tximport(files = rsem_files, type = "rsem", txIn = TRUE, txOut = FALSE, countsFromAbundance = "scaledTPM")
with
rsem_files <- list.files(sTPM_basedir, pattern = "genes", full.names = TRUE)
rsem_files <- rsem_files[file.info(rsem_files)$isdir]
rsem_files <- paste0(rsem_files, "/sTPM.sf")
rsem_files <- rsem_files[file.exists(rsem_files)]
names(rsem_files) <- basename(gsub("/sTPM.sf", "", rsem_files))
I get this:
Error in if (is.null(importer) & !kallisto.h5) { :
missing value where TRUE/FALSE needed
That points to line 168 in tximport.R, but I don"t get the problem?! I have the readr package installed, also even if not it should use another function to read in the files...
I could not find this issue in any related post, hopefully its not a too stupid mistake...
Appreciate any help!
Thank You,
Stephan
I have 1.6. just downloaded today from Bioconductor
Thanks!
When I do this, then
> install_github(“mikelove/tximport”)
Error: unexpected input in "install_github(“"
I am using RStudio1.1.442 with R3.4.4 on a windows 7 PC, could windows be the problem here?
It may be curly quotes? Try typing it out instead of copy paste