You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This happens for certain projects when running SQMtools on certain R versions.
I suspect it's related to R's internal unzip engine not being able to deal with files greater than 2Gb.
A workaround is to
Move the project.zip file into an empty folder also named project.
Uncompress project.zip there (so that the SqueezeMeta_conf.pl file, the results directory, etc... are directly inside the project folder.
Load the project normally with SQM=loadSQM("/path/to/project")
I will try to have this fixed for the next release.
The text was updated successfully, but these errors were encountered:
71d5597 switches from using utils::unzip to using zip::unzip for reading zip files during loadSQM.
This fixes the problem for some projects, but eventually I run into r-lib/zip#100 . The error happened with the example file mentioned by OP as well as with an example zipped SQM project.
This happens for certain projects when running SQMtools on certain R versions.
I suspect it's related to R's internal unzip engine not being able to deal with files greater than 2Gb.
A workaround is to
project.zip
file into an empty folder also namedproject
.project.zip
there (so that theSqueezeMeta_conf.pl
file, theresults
directory, etc... are directly inside theproject
folder.SQM=loadSQM("/path/to/project")
I will try to have this fixed for the next release.
The text was updated successfully, but these errors were encountered: