view data_nfs/cp_ftp.xml @ 0:9974ff5df008 default tip

Uploaded
author edward-kirton
date Thu, 01 Dec 2011 20:41:36 -0500
parents
children
line wrap: on
line source

<!-- THIS TOOL ASSUMES EMAIL ADDRESSES ARE USED AS USER IDS.
IF YOU ARE USING LDAP AUTHENTICATION, REPLACE THE $__user_email__ BELOW -->
<tool id="cp_ftp" name="Copy to FTP Folder" version="1.0.0">
<description>Download large files via FTP</description>
<command interpreter="perl">cp_ftp.pl $__app__.config.ftp_upload_dir $__user_email__ $logfile
#for $i in $files
${i.file} ${i.name}
#end for
</command>
<inputs>
	<repeat name="files" title="Files to export">
		<param name="file" type="data" format="data" label="File"/>
        <param name="name" type="text" size='20' value="" label="Filename" help='Include filetype suffix e.g. ".txt"' />
	</repeat>
</inputs>
<outputs>
    <data name="logfile" format="txt" />
</outputs>
<help>
**What it does**

Use this tool to copy files to your FTP folder.

Use an FTP client to connect to the Galaxy FTP server and use your usual Galaxy login.

Please delete the files from your FTP folder after you have downloaded them.
</help>
</tool>