Closed MrHedmad closed 8 months ago
The API response for paired-end reads is FTP_URL_1;FTP_URL_2, so metaharvest makes the wrong urls.
FTP_URL_1;FTP_URL_2
metaharvest
One quick fix is to split the lines before parsing, but maybe we can use it somehow?
As a quick'n'dirty fix, you can use:
cat urls.txt| sed 's/;/\nwget -nc ftp:\/\//g' > urls_filtered.txt
Assuming your URLs are in urls.txt.
urls.txt
This was fixed in afe951b by implementing the above command.
The API response for paired-end reads is
FTP_URL_1;FTP_URL_2
, sometaharvest
makes the wrong urls.One quick fix is to split the lines before parsing, but maybe we can use it somehow?