comparison data_nfs/export.xml @ 0:9974ff5df008 default tip

Uploaded
author edward-kirton
date Thu, 01 Dec 2011 20:41:36 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:9974ff5df008
1 <tool id="export" name="Export" version="1.0.0">
2 <description>files to NFS path</description>
3 <command interpreter="perl">export.pl $password $symlink $dest $logfile
4 #for $i in $files
5 ${i.file} ${i.name}
6 #end for
7 </command>
8 <inputs>
9 <param name="password" type="text" size='20' value='' label="Export password" help='Not your user password' />
10 <param name="symlink" type="select" display="radio" label="Copy or symlink files?">
11 <option value="0">COPY the files so I may delete the files from Galaxy</option>
12 <option value="1">SYMLINK the files; I will not delete the files from Galaxy</option>
13 </param>
14 <param name="dest" type="text" size='120' value="/house/homedirs/" label="Destination folder" help="Must be writable by Galaxy user (chmod 777)" />
15 <repeat name="files" title="Files to export">
16 <param name="file" type="data" format="data" label="File"/>
17 <param name="name" type="text" size='20' value="" label="Name" />
18 </repeat>
19 </inputs>
20 <outputs>
21 <data name="logfile" format="txt" />
22 </outputs>
23 <help>
24 **What it does**
25
26 This tool allows staff to export files from Galaxy to a specified NFS path.
27
28 The destination folder must be writable by the Galaxy user. It is suggested that you create a folder ~/dropbox and chmod 777 it.
29 </help>
30 </tool>