}
public void downloadZipFiles(String tempZipPath, String tempTsvPath)
{
writeLog("Downloading compressed files.");
DownloadZip obj = new DownloadZip();
if(dsUpdates.size() > 0 )
{
for(String str:dsUpdates)
{
if(str.contains("http://"))
obj.zipURL(str.substring(str.lastIndexOf("[")+1,str.lastIndexOf("]")),tempZipPath, tempTsvPath);
}
}
if(newDatasets.size() > 0)
{
for(String str:newDatasets)
{
if(str.contains("http://"))
obj.zipURL(str.substring(str.lastIndexOf("[")+1,str.lastIndexOf("]")),tempZipPath, tempTsvPath);
}
}
}