view data_nfs/export.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

<tool id="export" name="Export" version="1.0.0">
<description>files to NFS path</description>
<command interpreter="perl">export.pl $password $symlink $dest $logfile
#for $i in $files
${i.file} ${i.name}
#end for
</command>
<inputs>
    <param name="password" type="text" size='20' value='' label="Export password" help='Not your user password' />
    <param name="symlink" type="select" display="radio" label="Copy or symlink files?">
        <option value="0">COPY the files so I may delete the files from Galaxy</option>
        <option value="1">SYMLINK the files; I will not delete the files from Galaxy</option>
    </param>
    <param name="dest" type="text" size='120' value="/house/homedirs/" label="Destination folder" help="Must be writable by Galaxy user (chmod 777)" />
	<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="Name" />
	</repeat>
</inputs>
<outputs>
    <data name="logfile" format="txt" />
</outputs>
<help>
**What it does**

This tool allows staff to export files from Galaxy to a specified NFS path.

The destination folder must be writable by the Galaxy user. It is suggested that you create a folder ~/dropbox and chmod 777 it.
</help>
</tool>