Question: Downloading Files Via Ftp
0
gravatar for lilach noy
5.6 years ago by
lilach noy100
lilach noy100 wrote:
Is it possible? If so, how? Thank you, Lilach
• 892 views
ADD COMMENTlink modified 17 months ago by sameerdilipkhot20 • written 5.6 years ago by lilach noy100
0
gravatar for Dannon Baker
5.6 years ago by
Dannon Baker270
United States
Dannon Baker270 wrote:
No, currently HTTP is the only way to download files from Galaxy. -Dannon
ADD COMMENTlink written 5.6 years ago by Dannon Baker270
0
gravatar for Geert Vandeweyer
5.6 years ago by
Geert Vandeweyer40 wrote:
Hi, I have a tool on the main toolshed for this. It allows you to send data from a history to your FTP location. Next, you can download the files using any ftp client. http://toolshed.g2.bx.psu.edu/view/geert-vandeweyer/files_to_ftp Best, Geert -- Geert Vandeweyer, Ph.D. Department of Medical Genetics University of Antwerp Prins Boudewijnlaan 43 2650 Edegem Belgium Tel: +32 (0)3 275 97 56 E-mail: geert.vandeweyer@ua.ac.be http://ua.ac.be/cognitivegenetics http://www.linkedin.com/pub/geert-vandeweyer/26/457/726
ADD COMMENTlink written 5.6 years ago by Geert Vandeweyer40
0
gravatar for sameerdilipkhot
17 months ago by
sameerdilipkhot20 wrote:

For Mac users open terminal and do the following,

Include the -L (or –location) switch, since that will allow curl to follow any redirects (if the file gets moved, but there is a redirect for it). Also, if the URL’s file part (the section after the last slash) is not pretty, you can give a name for the downloaded file by using a lower-case -o (instead of -O), followed by a space and the name in quotes (Although -O can be left as is which still allows one to rename file after download completion in the select location. Also, always put the URL in single-quotes – ampersands and a few other characters will break on the command line if they aren’t in quotes. Here’s an example of those ideas combined:

First start by selecting a suitable location where you want your file saved as below

cd ~/Desktop

curl -L -o ‘myfile.dmg’ ‘http://www.somewebsite.com/files/getdmg?id=24’

OR

Just use

cd ~/Desktop curl -L -O http://www.somewebsite.com/files/getdmg?id=24

Hope this works for most Mac users. Cheers, SDK

ADD COMMENTlink written 17 months ago by sameerdilipkhot20
Please log in to add an answer.

Help
Access

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
Powered by Biostar version 16.09
Traffic: 176 users visited in the last hour