Path: blob/main/faqs/galaxy/datasets_download_using_command_line.md
2632 views
------From the terminal window on your computer, you can use wget or curl.
Make sure you have wget or curl installed.
Click on the Dataset name, then click on the copy link icon {% icon galaxy-link %}. This is the direct-downloadable dataset link.
Once you have the link, use any of the following commands:
For wget
wget '<link>'wget -O '<link>'wget -O --no-check-certificate '<link>' # ignore SSL certificate warningswget -c '<link>' # continue an interrupted downloadFor curl
curl -o outfile '<link>'curl -o outfile --insecure '<link>' # ignore SSL certificate warningscurl -C - -o outfile '<link>' # continue an interrupted downloadFor dataset collections and datasets within collections you have to supply your [API key]({% link faqs/galaxy/preferences_admin_api_key.md %}) with the request
Sample commands for wget and curl respectively are:
wget https://usegalaxy.org/api/dataset_collections/d20ad3e1ccd4595de/download?key=MYSECRETAPIKEYcurl -o myfile.txt https://usegalaxy.org/api/dataset_collections/d20ad3e1ccd4595de/download?key=MYSECRETAPIKEY