Galaxy Importfs

From Cheaha
Revision as of 00:54, 30 July 2012 by Pavgi@uab.edu (talk | contribs) (added: overview of ftp upload, data transfer methods and data import in Galaxy)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.


Attention: Research Computing Documentation has Moved
https://docs.rc.uab.edu/


Please use the new documentation url https://docs.rc.uab.edu/ for all Research Computing documentation needs.


As a result of this move, we have deprecated use of this wiki for documentation. We are providing read-only access to the content to facilitate migration of bookmarks and to serve as an historical record. All content updates should be made at the new documentation site. The original wiki will not receive further updates.

Thank you,

The Research Computing Team

Galaxy provides FTP upload option in the UI to import files from a user's FTP directory. This is a two step process as follows:

  1. Stage data files in FTP or data import data directory
  2. Select files that need to be uploaded into the galaxy

The first step of data staging in FTP directory happens outside of Galaxy. In second step, a Galaxy user can select files in FTP staging directory and import them into Galaxy. When files in FTP staging directory are imported in Galaxy, their original version in FTP staging directory is deleted by Galaxy application.

Although Galaxy referes to this data upload method as 'FTP upload', any other transfer protocol like SCP or wget can be used to transfer data files in this directory. UAB Galaxy instance supports 'FTP upload' option of Galaxy, where Galaxy application is configured to import files from a '/lustre/importfs/galaxy/$USER' directory. The '/lustre/importfs/galaxy/$USER' location is part of Cheaha cluster, which Galaxy application uses for analysis. Following documentation outlines steps involved in using Galaxy's 'FTP upload' method.

Account setup

  1. You need a Cheaha cluster account in order to transfer your data files to '/lustre/importfs/galaxy/$USER' directory. Please refer to Cheaha_GettingStarted#Access page for getting Cheaha account.
  2. Your '/lustre/importfs/galaxy/$USER' directory should get configured within 30-minutes after you get your Cheaha account.
  3. Make sure you can login to Cheaha cluster as documented Cheaha_GettingStarted#Login.

Data Transfer

Data transfer to Cheaha is briefly described in Cheaha_GettingStarted#Uploading_Data. Following examples cover Galaxy specific use cases to transfer data in '/lustre/importfs/galaxy/$USER' directory.

Pulling data from external URLs

A file accessible via external FTP or HTTP location can be downloaded using FTP or HTTP network downloader tools. Below is an example using wget network downloader tool which should work for both ftp and http URLs.

# Change to Directory "/lustre/importfs/galaxy/$USER"
$ cd /lustre/importfs/galaxy/$USER
$ wget http://pavgi.uabgrid.uab.edu/seq.bam

Note, above is a simple wget example, wget has many other useful options and you can take go through them by reading it's manual page using 'man wget' command.

Copying data to Cheaha using SCP

SCP is a file transfer protocol to securely copy files between two computer systems. Mac and Linux systems natively comes with SCP support, however, for Windows system you will need to download external client like pscp or WinSCP. Following example shows native SCP application usage from Linux or Mac system. It should work in a similar manner with other SCP clients.

# scp <path-to-file-on-local-desktop> <BlazerID>@cheaha.uabgrid.uab.edu:/lustre/importfs/galaxy/<BlazerID>/
$ scp users.csv pavgi@cheaha.uabgrid.uab.edu:/lustre/importfs/galaxy/pavgi/

Above command will transfer a file on a local desktop system to '/lustre/importfs/galaxy/<BlazerID>/' directory on Cheaha.

Data import in Galaxy

Files deposited in '/lustre/importfs/galaxy/$USER' directory can be seen by Galaxy application and they are listed in data upload method as shown below. FTP Staged Files.png Above example shows only file staged in importfs directory, however, you can multiple files staged and selected for data import in Galaxy. All files successfully imported in Galaxy will show up right-side history panel and they will be deleted from importfs directory.