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
I think it could help with workflow streamlining, if it was possible to extract files directly, through a remote connection (similar to how read.delim() works):
zip::unzip( rmt2, "Data 1.tsv" )
# Error in zip::unzip(rmt2, "Data 1.tsv") :# zip error: `Cannot open zip file `https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5674813/bin/13024_2017_219_MOESM5_ESM.zip` for reading` in file `zip.c:238`# In addition: Warning message:# In normalizePath(zipfile) :# path[1]="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5674813/bin/13024_2017_219_MOESM5_ESM.zip": No such file or directory
The text was updated successfully, but these errors were encountered:
I understand that this would make sense from an API stand point, but the implementation cannot be streaming, anyway, I believe, because unzip needs random access to parts of the file.
In R, it is generally possible to read remote files directly. For example,
However, unzipping a remote file always requires that the file is first downloaded:
I think it could help with workflow streamlining, if it was possible to extract files directly, through a remote connection (similar to how
read.delim()
works):The text was updated successfully, but these errors were encountered: