[hg] galaxy 3621: removed unused file.

details: http://www.bx.psu.edu/hg/galaxy/rev/196b3b8bb6d8 changeset: 3621:196b3b8bb6d8 user: rc date: Thu Apr 08 16:09:58 2010 -0400 description: removed unused file. diffstat: scripts/galaxy_messaging/server/daemon.py | 34 ------------------------------- 1 files changed, 0 insertions(+), 34 deletions(-) diffs (38 lines): diff -r 81de8629eeb6 -r 196b3b8bb6d8 scripts/galaxy_messaging/server/daemon.py --- a/scripts/galaxy_messaging/server/daemon.py Thu Apr 08 15:25:38 2010 -0400 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,34 +0,0 @@ -#!/usr/bin/env python -""" - -Data Transfer Script Daemon - -This script is called from Galaxy LIMS once the lab admin starts the data -transfer process using the user interface. This creates a child process and -this child process starts the data_transfer.py script as a new process - -This script passes all the arguments from Galaxy LIMS to the data_transfer.py script - -Usage: - -python daemon.py <sequencer_host> - <username> - <password> - <source_file> - <sample_id> - <dataset_index> - <library_id> - <folder_id> -""" - -import sys, os -# Perform first fork. -try: - pid = os.fork( ) - if pid > 0: - sys.exit(0) # Exit first parent. -except OSError, e: - sys.stderr.write("fork #1 failed: (%d) %sn" % (e.errno, e.strerror)) - sys.exit(2) -os.execv(os.path.join( os.getcwd(), "scripts/galaxy_messaging/server/data_transfer.py"), sys.argv) -
participants (1)
-
Greg Von Kuster