Entering edit mode
I have done the command:
tximeta(coldata)
but while the .gft was been downloaded, I interrupted the process halfway and then it won't let me download the gtf again or move forward:
importing quantifications
reading in files with read_tsv
1
found matching transcriptome:
[ Ensembl - Mus musculus - release 99 ]
loading existing EnsDb created: 2020-02-17 13:55:01
Error: Could not connect to database:
unable to open database file
What should I do? Thanks
Hi Michael! Thank you for the answer , but I still don't understand how to deal with the problem. I have look inside the directory of BiocFileCache and I have not seen any file with the extension .gtf. Thanks for the help.
I try to download the BiocFileCache and this was the message:
Can you post all code?
Is this the error message you obtain when you run:
?
I've made it work somehow, first I have downloaded "dbplyr", and later I could finally load the library "BiocFileCache". With that, I have seen this:
So, I have removed the file like this:
Now it works properly, thank you Michael! :) Can I ask you another issue? How can I import several quant.sf in the same file to do the import with Tximeta? I understand with only one, but I don't if I have several quant.sf files.
tximeta
andtximport
(which it builds upon) are both designed for importing multiple files (importing one file is a special case really).See:
?tximeta
the first argument describes a data.frame with two columns,
files
andnames
. You can have a single row and just import one file, or multiple rows of this data.frame.